Add Routing on the app

This commit is contained in:
Charles Bochet
2022-12-02 12:39:15 +01:00
parent 017df9dae2
commit eba76274c6
7 changed files with 101 additions and 67 deletions

View File

@ -0,0 +1,9 @@
function History() {
return (
<div>
<h1>This is the history page</h1>
</div>
);
}
export default History;

View File

@ -0,0 +1,9 @@
function Tasks() {
return (
<div>
<h1>This is the home page</h1>
</div>
);
}
export default Tasks;