1.0.1 • Published 3 years ago

react-stopwatch-input v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago
npm install react-stopwatch-input

or

yarn add react-stopwatch-input

import StopwatchInput from 'react-stopwatch-input'

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;