# EP React UI Components
React basic UI components used in EP. 
Plug & use!
Happy coding!

### Dependencies
- [React] *v15.6^*
- [ReactDOM]
- [React Transition Group] - for animations effect.
- [moment.js] - for date related convertion.
- [lodash] *v4.17^* - JS helpers.
- [PropTypes] - React typechecking.
- [classnames] - CSS className helpers.

### Installation
You can simply install from NPM package with command below.
```
$ npm install -s 'ep-react-ui'
```

### Use case
Import components you want to use and refer to [demo] for all available props for components.
```
import { Button, Autocomplete } from 'ep-react-ui'
```

### Development
Run `dev` mode.
```
$ npm run dev
```

Build all related package.
```
$ npm run build
```

### License
MIT

[React]: <https://facebook.github.io/react/>
[ReactDOM]: <https://facebook.github.io/react/docs/react-dom.html>
[React Transition Group]: <https://github.com/reactjs/react-transition-group/>
[moment.js]: <https://momentjs.com/>
[lodash]: <https://lodash.com/>
[PropTypes]: <https://facebook.github.io/react/docs/typechecking-with-proptypes.html>
[classnames]: <https://github.com/JedWatson/classnames>
[demo]: <https://kennyooi.github.io/ep-react-ui/>

### Changes
Version 0.1     - First version.
