项目作者: iamgbayer

项目描述 :
react hooks react-hooks
高级语言: JavaScript
项目地址: git://github.com/iamgbayer/use-checkbox.git
创建时间: 2019-02-11T15:43:13Z
项目社区:https://github.com/iamgbayer/use-checkbox

开源协议:MIT License

下载


Hooks for checkbox

How use?

The checkboxes options is based in an array of objects, and at each object the key and checked propriety is required.

See the example.

  1. const options = [
  2. {
  3. key: 'bacon',
  4. label: 'Bacon',
  5. checked: true
  6. },
  7. {
  8. key: 'apple',
  9. label: 'Apple',
  10. checked: false
  11. }
  12. ]
  13. const {checkboxes, setChecked} = useCheckbox(options)

Demo

Edit Checkbox

License

MIT © Guilherme Bayer