/home/eraldo
Eraldo Hasanaj
Father, Husband, Founder, Software Developer and Gamer (when possible)
eraldo@hasanaj:~$
⌘K / Ctrl K
← back to blog

TanStack Router: File-Based Notes

Jan 12, 2026·1 min read·series:stack-notes

TanStack Router gives you type-safe routes without giving up DX.

Example route file

import { createFileRoute } from '@tanstack/react-router'
 
export const Route = createFileRoute('/about')({
  component: AboutPage,
})
 
function AboutPage() {
  return <div>About</div>
}