Todo App
A modern React TypeScript todo application built with Vite and styled with Tailwind CSS.
A modern React TypeScript todo application built with Vite and styled with Tailwind CSS.
A modern React TypeScript todo application built with Vite and styled with Tailwind CSS.
cd todo-app npm installRun the development server with hot reload:
npm run devThe app will be available at `http://localhost:5173`
Run ESLint to check for code issues:
npm run lintCreate an optimized production build:
npm run buildThe build output will be in the `dist/` directory.
Preview the production build locally:
npm run previewsrc/
├── components/
│ └── TodoApp.tsx # Main todo application component
├── App.tsx # Root application component
├── index.css # Global styles and Tailwind imports
└── main.tsx # Application entry point