freeCodeCamp Pomodoro Clock build with React
FCC Pomodoro Clock is a simple timer countdown app, built with React.
git clone https://github.com/cristalnaya/react-pomodoro-clock.git
cd react-pomodoro-clock
npm install
in your terminalnpm start
and the app will run locally on port: 3000Note: Node JS and NPM (Node Package Manager) is required to install and run the application.
├── package.json
├── package-lock.json
├── public
│ ├── audio
│ │ └── beep.wav
│ ├── favicon.ico
│ ├── index.html
│ └── manifest.json
├── README.md
└── src
├── App.css
├── App.js
├── App.test.js
├── components
│ ├── LengthControl.js
│ ├── StartButton.js
│ └── Timer.js
├── index.js
└── serviceWorker.js
This project was bootstrapped with Create React App. You can find more information on how to perform common tasks here.