Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

react-stopwatch-input

ThomasMcDonald24MIT1.0.1TypeScript support: included

Simple react input for stopwatch times

time, input, react-component, component, picker, react-time-picker, react-time-input, time-picker, time-input, react-time, react, react-time, components, ui, react-stopwatch-input

readme

React Stopwatch Input

React Component for stopwatch times

Build

Installation

npm install react-stopwatch-input

or

yarn add react-stopwatch-input

import StopwatchInput from 'react-stopwatch-input'

Example

Here's an example of basic usage:
import React from 'react';
import './App.css';
import StopwatchInput from 'react-stopwatch-input';

function App() {
  return (
    <div className="App">
      <p>Basic input</p>
      <StopwatchInput 
        name="stopwatchInput"
        required={false}
      />
    </div>
  );
}

export default App;

Made by Thomas McDonald.

NOTE: This package was created so I could learn how to create npm packages and use git actions. Use at own risk.