witty-ui
v1.0.1
Published
React UI components for modern apps
Downloads
6
Readme
witty-ui
UI components for modern apps
UI Components
- Switch
- FormRow
Install
yarn add witty-ui
OR
npm install witty-ui --save
Usage
Switch
// Switch
import { Switch } from 'witty-ui'
render () {
return (<Switch onLabel='Yes' offLabel='No' />)
}
FormRow
// FormRow
import { FormRow, Switch } from 'witty-ui'
render () {
return (
<FormRow label='Pick Up at Store' col={{label: 6, field: 16}}>
<Switch onLabel='Yes' offLabel='No' />
</FormRow>)
}