Calendar field and time field

This commit is contained in:
Ben Grant 2021-03-02 20:31:32 +11:00
parent edcd4dcaa0
commit 0dde47109f
32 changed files with 901 additions and 65 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;