apeman-react-checkbox

apeman react package for checkbox component.


Keywords
React, apeman, react-component, checkbox
License
MIT
Install
npm install apeman-react-checkbox@4.0.6

Documentation

apeman-react-checkbox

Build Status Code Climate Code Coverage npm Version JS Standard

apeman react package for checkbox component.

Installation

$ npm install apeman-react-checkbox --save

Demo

Live demo is hosted on GitHub Pages.

Demo Image

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.

Links