MCPcopy Create free account
hub / github.com/GreatStackDev/project-management / App

Function App

src/App.jsx:10–25  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

8import TaskDetails from "./pages/TaskDetails";
9
10const App = () => {
11 return (
12 <>
13 <Toaster />
14 <Routes>
15 <Route path="/" element={<Layout />}>
16 <Route index element={<Dashboard />} />
17 <Route path="team" element={<Team />} />
18 <Route path="projects" element={<Projects />} />
19 <Route path="projectsDetail" element={<ProjectDetails />} />
20 <Route path="taskDetails" element={<TaskDetails />} />
21 </Route>
22 </Routes>
23 </>
24 );
25};
26
27export default App;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected