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>
  )
}

Core Patterns

Installs
19
Repository
tanstack/router
GitHub Stars
15.1K
First Seen
Jul 27, 2026
navigation — tanstack/router