Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Nested View of components inside a route also (Feature) #37

Open
chetryJyoti opened this issue Mar 26, 2023 · 1 comment
Open

Nested View of components inside a route also (Feature) #37

chetryJyoti opened this issue Mar 26, 2023 · 1 comment

Comments

@chetryJyoti
Copy link

chetryJyoti commented Mar 26, 2023

Example:App.js

<Routes>
<Route index element={<Welcome />} />
   <Route path="dash" element={<DashLayout />}>
            <Route path="users">
              <Route index element={<UsersList />} />
              <Route path=":id" element={<EditUser />} />
              <Route path="new" element={<NewUserForm />} />
            </Route>
   </Route>
</Routes>

The ReacTree:
recTreeIssue

Suggestion: If we could also view the routes it would be much easier to understand the application structure.

@anthonydp21
Copy link

+1 for this

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants