Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/router/how-to/setup-basic-search-params.md
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,7 @@ After setting up basic search parameters, you might want to:
- [Valibot Documentation](https://valibot.dev/) - Lightweight validation library
- [Yup Documentation](https://github.com/jquense/yup) - Object schema validation
- **TanStack Router:**
- [TanStack Zod Adapter](https://tanstack.com/router/latest/docs/framework/react/api/router/zodValidator) - Official Zod adapter
- [TanStack Valibot Adapter](https://tanstack.com/router/latest/docs/framework/react/api/router/valibotValidator) - Official Valibot adapter
- [TanStack Zod Adapter](https://github.com/TanStack/router/tree/main/packages/zod-adapter) - Official Zod adapter (the API doc page for `zodValidator` was retired; the GitHub repo is the canonical home)
- [TanStack Valibot Adapter](https://github.com/TanStack/router/tree/main/packages/valibot-adapter) - Official Valibot adapter (the API doc page for `valibotValidator` was retired; the GitHub repo is the canonical home)
- [Search Parameters Guide](../guide/search-params.md) - Comprehensive search parameters documentation
- [Type Safety Guide](../guide/type-safety.md) - Understanding TanStack Router's type safety
2 changes: 0 additions & 2 deletions docs/start/framework/react/start-vs-nextjs.md
Original file line number Diff line number Diff line change
Expand Up @@ -187,8 +187,6 @@ In Next, RSCs are the paradigm - you build around them, think about them constan

We call our approach **Composite Components** - server-produced React components that the client can fetch, cache, stream, and assemble. The client owns composition; the server ships UI pieces. No new mental model. No framework-specific caching semantics. Just data flowing through tools you already understand.

For the full deep-dive, see [Composite Components: Server Components with Client-Led Composition](https://tanstack.com/blog/composite-components).

## Server Functions vs Server Actions

Both frameworks let you call server code from the client. The approaches differ significantly.
Expand Down