react-checkbox2
v1.0.10
Published
Stateless and easily stylable checkbox component for react
Downloads
10
Maintainers
Readme
React Checkbox
Stateless and easily stylable checkbox component for react
install
npm install -S react-checkbox2
usage
<Checkbox
checked={this.state.shouldBeChecked}
value={myCustomValue}
onChange={this.onChange}
/>
{/* or */}
{/* add cutom markup */}
<Checkbox
checked={this.state.shouldBeChecked}
value={myCustomValue}
onChange={this.onChange}
>
<div class="some-custom-text">Select Me!</div>
</Checkbox>