MCPcopy Create free account
hub / github.com/core7s/react-design-editor / Router

Function Router

src/Router.tsx:5–14  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

3import Dashboard from "~/views/Dashboard"
4
5const 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
16export default Router

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected