Add Routing on the app
This commit is contained in:
9
front/src/pages/History.tsx
Normal file
9
front/src/pages/History.tsx
Normal file
@ -0,0 +1,9 @@
|
||||
function History() {
|
||||
return (
|
||||
<div>
|
||||
<h1>This is the history page</h1>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default History;
|
||||
9
front/src/pages/Tasks.tsx
Normal file
9
front/src/pages/Tasks.tsx
Normal file
@ -0,0 +1,9 @@
|
||||
function Tasks() {
|
||||
return (
|
||||
<div>
|
||||
<h1>This is the home page</h1>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default Tasks;
|
||||
Reference in New Issue
Block a user