-
Notifications
You must be signed in to change notification settings - Fork 1.3k
docs: Update TanStack Router guide #8632
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
Conversation
Build successful! 🎉 |
``` | ||
|
||
In you app, use these components instead of importing directly from `react-aria-components`. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In you app, use these components instead of importing directly from `react-aria-components`. | |
In your app, use these components instead of importing directly from `react-aria-components`. |
``` | ||
|
||
In you app, use these components instead of importing directly from `@adobe/react-spectrum`. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In you app, use these components instead of importing directly from `@adobe/react-spectrum`. | |
In your app, use these components instead of importing directly from `@adobe/react-spectrum`. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we wanna perhaps list the version (aka this latest release) that is needed for this to work? I know sometimes people get confused since they don't know when a new feature/fix got added/updated
Build successful! 🎉 |
I'be checked the demo from TanStack Router PR side, it seems like it doesn't work correctly with enter click? 🤔 It performs full side reload. Any ideas? |
Since we pass through DOM events now, it's possible to use TanStack Router's
createLink
function directly instead of using RouterProvider. This has the benefit that it automatically supports the TypeScript features of TanStack, and also works with their pre-fetching. Updating the docs accordingly. Also sent a PR to update the docs on the TanStack site: TanStack/router#4757