A simple CRUD app to get comfortable working with React. Bootstrapped with create-react-app, and used json-server as a mock backend.
- Show/hide input fields with add/close button
- Add new tasks with user input
- Set an optional reminder for each task
- Add or remove reminders by double-clicking a task
- Delete a task by clicking the red x icon
- Install dependencies:
npm install
- Run the react dev server:
npm start
- Run the json server:
npm run server
- To build for production:
npm run build