A simple, clean React TypeScript project created with Vite.
- React 18 with TypeScript
- Vite for fast development and building
- Modern CSS with best practices
- Clean and minimal design
- Node.js (version 14 or higher)
- npm (comes with Node.js)
- Clone the repository
- Install dependencies:
npm install
To start the development server:
npm run dev
The application will be available at http://localhost:5173
To create a production build:
npm run build
The built files will be in the dist
directory.
To preview the production build locally:
npm run preview
├── src/
│ ├── App.tsx # Main application component
│ ├── App.css # Component styles
│ ├── index.css # Global styles
│ └── main.tsx # Application entry point
├── public/ # Static assets
├── index.html # HTML template
├── package.json # Project dependencies and scripts
├── tsconfig.json # TypeScript configuration
└── vite.config.ts # Vite configuration