/todo_pomodoro

Primary LanguageJavaScript

Pomodoro timer with task list

Application is made with Create React app

npx create-react-app app-name

Dependencies

  • Sass for creating CSS for the project
npm install node-sass

Don't forget to add script as well into package.json:

"sass": "node-sass -w scss/ -o dist/css/ --recursive"
  • axios for fetching data from the backend
npm install axios