Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jesstelford/react-checkem

Simple "Select All" for checkboxes in React
https://github.com/jesstelford/react-checkem

Last synced: 28 days ago
JSON representation

Simple "Select All" for checkboxes in React

Awesome Lists containing this project

README

        

# React Check 'em

> _Simple "Select All" for checkboxes in React_

```javascript
import { CheckemProvider, useCheckem } from 'react-checkem';

const App = () => (



);

const Form = () => {
const { register, registerSelectAll, handleChange } = useCheckem({
name: 'my-form',
});

return (



Select All



Item 1



Item 2



Item 3


);
};
```