oslabs-beta / ReacTree

ReacTree - VS Code extension that generates a hierarchy tree of React components with each node listing the passed down props, indicating whether it's connected the Redux store, and guiding you to the associated file with the click of a button
https://reactree.dev/
MIT License
148 stars 31 forks source link

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

Open chetryJyoti opened 1 year ago

chetryJyoti commented 1 year ago

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 commented 1 year ago

+1 for this