Add TanStack Router Example App (1-6-vite-tanstack-router) #3
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR implements a new example application that demonstrates TanStack Router integration with React Query, following the same functionality as the existing
1-5-vite-reactquery-query-options
app but using TanStack Router for routing instead of React Router.What's New
Created
apps/1-6-vite-tanstack-router
with the following features:createRouter
,createRootRoute
, andcreateRoute
APIsRoutes Implemented
/
- Home page with posts feed/users
- Users listing with interactive data table/users/$id
- Individual user details with their posts/posts/$id
- Post details with comments functionalityKey Technical Changes
react-router-dom
with@tanstack/react-router
and@tanstack/router-devtools
useParams
→ TanStack Router's typed params from route contextuseNavigate
→ TanStack Router's navigation APILink
→ TanStack Router's Link component with typed routesuseLocation
→ TanStack Router'suseRouter
hookScreenshots
Homepage with TanStack Router:

Users page with data table:

Verification
pnpm build
)pnpm dev
)The app demonstrates how to migrate from React Router to TanStack Router while maintaining all existing functionality and gaining additional type safety and developer experience improvements.
Fixes #2.
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.