()
| 8 | import TaskDetails from "./pages/TaskDetails"; |
| 9 | |
| 10 | const 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 | |
| 27 | export default App; |
nothing calls this directly
no outgoing calls
no test coverage detected