Calendar field and time field
This commit is contained in:
parent
edcd4dcaa0
commit
0dde47109f
32 changed files with 901 additions and 65 deletions
14
crabfit-frontend/src/pages/Event/Event.tsx
Normal file
14
crabfit-frontend/src/pages/Event/Event.tsx
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