Timer for Pomodoro built with React
- Install the dependencies with
npm install
- Run tests
npm test
- After install the dependencies, run the server with
npm start
- Go to your broswer localhost:8080
Set time that the Pomodoro will finish
...
import Pomodoro from './modules/Pomodoro'
// typeCounter ['minutes', 'seconds']
render((
<Pomodoro counter={25} typeCounter='minutes' />
), document.getElementById('your-app-id'))