-
How i can create my dashboard page like this? (react-router-dom exmaple) <Route
path={Pages.Dashboard}
element={<DashboardPage />}>
<Route
index
element={<EmptyBoard />}
/>
<Route
path=':boardId'
element={<Board />}
/>
</Route> Didn't find anything useful in the docs |
Beta Was this translation helpful? Give feedback.
Answered by
chertik77
Jan 12, 2025
Replies: 2 comments 1 reply
-
Check out the Outlet component |
Beta Was this translation helpful? Give feedback.
1 reply
-
Fixed! I need to have
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
chertik77
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Fixed! I need to have
dashboard.tsx
file then structure goes like this: