react-digital-clock
A beautiful digital clock for react.
installation
npm install -S @feizheng/react-digital-clock
update
npm update @feizheng/react-digital-clock
properties
Name | Type | Default | Description |
---|---|---|---|
className | string | - | The extended className for component. |
value | string | - | Default value. |
onChange | func | - | The change handler. |
usage
- import css
@import "~@feizheng/react-digital/dist/style.scss";
@import "~@feizheng/react-digital-numeric/dist/style.scss";
@import "~@feizheng/react-digital-clock/dist/style.scss";
// customize your styles:
$react-digital-clock-options: ()
- import js
import ReactDigitalClock from '@feizheng/react-digital-clock';
import ReactDOM from 'react-dom';
import React from 'react';
import './assets/style.scss';
class App extends React.Component {
componentDidMount() {}
render() {
return (
<div className="app-container">
<ReactDigitalClock value="2018-06-23 11:03:11" />
</div>
);
}
}
ReactDOM.render(<App />, document.getElementById('app'));
documentation
resources
- https://www.robinwieruch.de/minimal-react-webpack-babel-setup/
- https://www.valentinog.com/blog/react-webpack-babel/
- https://jestjs.io/docs/en/tutorial-react#snapshot-testing-with-mocks-enzyme-and-react-16
- https://testing-library.com/docs/react-testing-library/api
todos
- [ ] Add: semver number for every build files.
- [ ] Add: need output css files.
- [ ] Add: PWA support for docs.
- [ ] Add: source.map file for dist(
you can upload for production debug
). - [ ] BUG: npm run dev will clean dist.