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

Core Patterns

Installs
GitHub Stars
16
First Seen
router-core/navigation — lightfastai/lightfast