import { createFileRoute } from '@tanstack/react-router' export const Route = createFileRoute('/')({ component: App }) function App() { return (

TanStack Start Base Template

Start simple, ship quickly.

This base starter intentionally keeps things light: two routes, clean structure, and the essentials you need to build from scratch.

About This Starter Router Guide
{[ [ 'Type-Safe Routing', 'Routes and links stay in sync across every page.', ], [ 'Server Functions', 'Call server code from your UI without creating API boilerplate.', ], [ 'Streaming by Default', 'Ship progressively rendered responses for faster experiences.', ], [ 'Tailwind Native', 'Design quickly with utility-first styling and reusable tokens.', ], ].map(([title, desc], index) => (

{title}

{desc}

))}

Quick Start

) }