A modern React Router starter application built with Vite, TypeScript, and React Router v7.
- React 18 - Latest version of React
- React Router v7 - Modern routing solution
- TypeScript - Type safety and better developer experience
- Vite - Fast build tool and dev server
- ESLint - Code linting and formatting
npm installnpm run devOpen http://localhost:5173 in your browser.
npm run buildnpm run previewreact-router-starter/
├── src/
│ ├── pages/
│ │ ├── Home.tsx
│ │ ├── About.tsx
│ │ ├── Contact.tsx
│ │ └── NotFound.tsx
│ ├── App.tsx
│ ├── App.css
│ ├── main.tsx
│ └── index.css
├── index.html
├── package.json
├── tsconfig.json
├── vite.config.ts
└── README.md
/- Home page/about- About page/contact- Contact page*- 404 Not Found page
MIT