Initial commit
This commit is contained in:
commit
15d4e2f126
37 changed files with 12580 additions and 0 deletions
14
crabfit-frontend/src/pages/Event/Event.js
Normal file
14
crabfit-frontend/src/pages/Event/Event.js
Normal 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;
|
||||
Loading…
Add table
Add a link
Reference in a new issue