apeman-react-checkbox
apeman react package for checkbox component.
Installation
$ npm install apeman-react-checkbox --save
Demo
Live demo is hosted on GitHub Pages.
Usage
'use strict'
import React from 'react'
import {ApIonIconStyle} from 'apeman-react-basic'
import {ApCheckbox, ApCheckboxStyle} from 'apeman-react-checkbox'
const ExampleComponent = React.createClass({
render () {
return (
<div>
<ApCheckbox id="favor-checkbox-orange" name="favor" value="orange" title="I like orange."
onChange={ () => { /* ... */ } }/>
<ApCheckbox id="favor-checkbox-apple" name="favor" value="apple" title="I like apple."
onChange={ () => { /* ... */ } }/>
</div>
)
}
})
Components
ApCheckboxGroup
Props
Name | Type | Default | Description |
---|
ApCheckboxStyle
Props
Name | Type | Default | Description |
---|
ApCheckbox
Props
Name | Type | Default | Description |
---|
License
This software is released under the MIT License.