A simple TodoList with React, Redux and TypeScript
- Load items from API
- Create a new item
- Edit item
- Toggle item
- Delete item (using REST API)
- Filter items (show all, active and completed)
- Show counter
Tools needed to run this app: node
and npm
npm install
to install dependenciesnpm install -g json-server
to get a full fake REST APInpm run json-server
to run JSON servernpm start
to run the app- Go to
http://localhost:3000