diff options
author | Blaster4385 <[email protected]> | 2024-02-19 20:43:31 +0530 |
---|---|---|
committer | Blaster4385 <[email protected]> | 2024-02-21 23:52:45 +0530 |
commit | 96c2c2b16ff36b6fc01f4bcae26ff3d1e885b73d (patch) | |
tree | 7e264fddc3d6fda7b5026495dbc68345dacd78a9 /client/src/pages | |
parent | 2186af44ecc1924f8343e06714999c76a15a1c0e (diff) |
feat: Add support for shortening URLs
Diffstat (limited to 'client/src/pages')
-rw-r--r-- | client/src/pages/Home/Home.jsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/client/src/pages/Home/Home.jsx b/client/src/pages/Home/Home.jsx index 21cbdb0..9886c66 100644 --- a/client/src/pages/Home/Home.jsx +++ b/client/src/pages/Home/Home.jsx @@ -9,6 +9,7 @@ const Home = () => { <Routes> <Route path="/" element={<Editor />} /> <Route path="/:id" element={<Editor />} /> + <Route path="/r/:id" element={<Editor />} /> </Routes> </div> ); |