()
| 3 | import Dashboard from "~/views/Dashboard" |
| 4 | |
| 5 | const Router = () => { |
| 6 | return ( |
| 7 | <BrowserRouter> |
| 8 | <Routes> |
| 9 | <Route path="/manage" element={<Dashboard />} /> |
| 10 | <Route path="/" element={<DesignEditor />} /> |
| 11 | </Routes> |
| 12 | </BrowserRouter> |
| 13 | ) |
| 14 | } |
| 15 | |
| 16 | export default Router |
nothing calls this directly
no outgoing calls
no test coverage detected