0.2.0 • Published 7 months ago

react-timeclock v0.2.0

Weekly downloads
-
License
ISC
Repository
github
Last release
7 months ago

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>

Then go to that page to clock in/out when working on your project

It's a great way to stay accountable to yourself and reach for the goals you've set for your project

0.2.0

7 months ago

0.1.0

1 year ago

0.0.1

1 year ago

0.0.3

1 year ago

0.0.2

1 year ago

0.0.0

1 year ago