diff options
Diffstat (limited to 'client/components/router.jsx')
-rw-r--r-- | client/components/router.jsx | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/client/components/router.jsx b/client/components/router.jsx new file mode 100644 index 0000000..a40b06e --- /dev/null +++ b/client/components/router.jsx @@ -0,0 +1,10 @@ +import { Routes, Route } from 'react-router-dom'; +import { Home } from './home/_home'; + +export const Router = () => { + return ( + <Routes> + <Route path="/" element={<Home />} /> + </Routes> + ); +}; |