A minimal to-do app built with React and TypeScript. Tasks are stored in your browser (localStorage) so they persist between sessions.
- Add tasks with the input and "Add" button (or press Enter)
- Complete tasks by clicking the circle next to an item
- Delete tasks with the × button
- Filter by All, Active, or Completed
- Clear completed in one click
- Persistence via localStorage
cd todo-app
npm install
npm startThen open http://localhost:3000.
npm run buildOutput is in the build folder.