### Install Dependencies and Run Development Server Source: https://tanstack.com/router/v1/docs/framework/solid/examples/authenticated-routes Use this command to install project dependencies and start the development server for the TanStack Solid Router example. ```bash npm install && npm run dev ``` -------------------------------- ### Install Project Dependencies Source: https://tanstack.com/router/v1/docs/framework/solid/examples/navigation-blocking Use npm or yarn to install the required packages for the project. ```bash npm install ``` ```bash yarn ``` -------------------------------- ### Install Auth0 SDK Source: https://tanstack.com/router/v1/docs/how-to/setup-auth-providers.md Install the Auth0 React SDK using npm. ```bash npm install @auth0/auth0-react ``` -------------------------------- ### FileRoute Example Source: https://tanstack.com/router/v1/docs/api/router/FileRouteClass.md Example demonstrating how to use the deprecated `FileRoute` class to create a route with a loader and component. ```APIDOC ### Examples ```tsx import { FileRoute } from '@tanstack/react-router' export const Route = new FileRoute('/').createRoute({ loader: () => { return 'Hello World' }, component: IndexComponent, }) function IndexComponent() { const data = Route.useLoaderData() return
This is the notFoundComponent configured on root route
Start OverYou are navigating to {next.pathname}
Are you sure you want to leave?
Are you sure you want to leave?