ReacTree icon indicating copy to clipboard operation
ReacTree copied to clipboard

Nested View of components inside a route also (Feature)

Open chetryJyoti opened this issue 1 year ago • 1 comments

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.

chetryJyoti avatar Mar 26 '23 07:03 chetryJyoti