merge eva repos into single repository
This commit is contained in:
commit
200dd620ae
52 changed files with 2281 additions and 0 deletions
21
frontend/src/views/Index.jsx
Normal file
21
frontend/src/views/Index.jsx
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
import React from 'react';
|
||||
import Map from '../components/Map';
|
||||
import EventList from '../components/EventList';
|
||||
|
||||
const style = {
|
||||
container: {
|
||||
display: 'flex',
|
||||
flexDirection: 'column',
|
||||
alignItems: 'center',
|
||||
justifyContent: 'center',
|
||||
},
|
||||
};
|
||||
|
||||
const IndexContainer = () => (
|
||||
<div style={style.container}>
|
||||
<Map />
|
||||
<EventList />
|
||||
</div>
|
||||
);
|
||||
|
||||
export default IndexContainer;
|
||||
Loading…
Add table
Add a link
Reference in a new issue