bxjs-react-component

Simple React Pomodoro timer component made with typescript and babel and compiled with parcel.

Usage no npm install needed!

<script type="module">
  import bxjsReactComponent from 'https://cdn.skypack.dev/bxjs-react-component';
</script>

README

Simple React component made with typescript, babel and parcel

Simple React Pomodoro timer component made with typescript and babel and compiled with parcel.

Local setup

  1. Clone the repo
  2. Run npm install
  3. Run npm start for demo and development
  4. Run npm run build for production ready build (can be found in lib)

Using component

  1. Add component to your project via npm install bxjs-react-component
  2. Import and use time like so:
import Pomodoro from 'bxjs-react-component';

export default () => <Pomodoro />;