Initial commit

This commit is contained in:
Ben Grant 2021-02-26 13:19:13 +11:00
commit 15d4e2f126
37 changed files with 12580 additions and 0 deletions

View file

@ -0,0 +1,14 @@
import { Link } from 'react-router-dom';
const Event = (props) => {
const id = props.match.params.id;
return (
<div>
<div>Event {id}</div>
<Link to="/">Back home</Link>
</div>
);
};
export default Event;

View file

@ -0,0 +1,12 @@
import { Link } from 'react-router-dom';
const Home = () => {
return (
<div>
<div>Home</div>
<Link to="/test">Test</Link>
</div>
);
};
export default Home;

View file

@ -0,0 +1,2 @@
export { default as Home } from './Home/Home';
export { default as Event } from './Event/Event';