Package Exports
- @s-ui/react-atom-radio-button
- @s-ui/react-atom-radio-button/lib/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@s-ui/react-atom-radio-button) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
AtomRadioButton
AtomRadioButton is a component that displays an input radio w/ its expected behavior
Installation
$ npm install @s-ui/react-atom-radio-button --save
Usage
import AtomRadioButton from '@s-ui/react-atom-radio-button'
Basic usage
<AtomRadioButton />
Checked
<AtomRadioButton checked />
Disabled
<AtomRadioButton disabled />
w/ onChange handler
<AtomRadioButton onChange={console.log} />
Find full description and more examples in the demo page.