diff options
author | Joseph Ditton <jditton.atomic@gmail.com> | 2021-11-20 18:18:58 -0700 |
---|---|---|
committer | Joseph Ditton <jditton.atomic@gmail.com> | 2021-11-20 18:18:58 -0700 |
commit | 63c02f62aa3c57f72602a9efe89dc0780d6d3079 (patch) | |
tree | dc0a4ef57732ceb3f917b6415ea044ef02ad6f81 /client/components/router.jsx | |
parent | 674f1e04439fb1d8293f9788707093b83a1f3f1c (diff) | |
download | locchat-63c02f62aa3c57f72602a9efe89dc0780d6d3079.tar.gz locchat-63c02f62aa3c57f72602a9efe89dc0780d6d3079.zip |
basic login boilerplatre
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> + ); +}; |