router-core/navigation
Installation
SKILL.md
Navigation
Setup
Basic type-safe Link with to and params:
import { Link } from '@tanstack/react-router'
function PostLink({ postId }: { postId: string }) {
return (
<Link to="/posts/$postId" params={{ postId }}>
View Post
</Link>
)
}