react-timeclock
v0.2.0
Published
- clock in/out - record what you've accomplished in each working session - view total number of hours logged to your project - remove time stamps
Downloads
3
Readme
One component that adds a timeclock to any react project
- clock in/out
- record what you've accomplished in each working session
- view total number of hours logged to your project
- remove time stamps
This feature uses classes from Animate.css
if you want the animation, follow their documentation to import their stylesheet at the root of your project, or use the cdn
// _app.tsx
import 'animate.css'
I recommend using react-router-dom
to render this component on a separate page in any project you're working on
import { Timeclock } from 'react-timeclock'
import { Router, Route } from 'react-router-dom'
const App = () =>
<Router>
<Route exact path="timeclock" component={Timeclock} />
{... project pages}
</Router>