0.5.7 • Published 8 years ago
@trendmicro/react-toggle-switch v0.5.7
react-toggle-switch  
 
React Toggle Switch
Demo: https://trendmicro-frontend.github.io/react-toggle-switch
Installation
- Install the latest version of react and react-toggle-switch: - npm install --save react @trendmicro/react-toggle-switch
- At this point you can import - @trendmicro/react-toggle-switchand its styles in your application as follows:- import ToggleSwitch from '@trendmicro/react-toggle-switch'; // Be sure to include styles at some point, probably during your bootstraping import '@trendmicro/react-toggle-switch/dist/react-toggle-switch.css';
Usage
Uncontrolled Component
<ToggleSwitch
    checked
    ref={(node) => {
        this.toggleSwitch = node;
    }}
/>You can get the value of the checked attribute:
console.log(this.toggleSwitch.checked);
// => trueControlled Component
<ToggleSwitch
    checked={this.state.checked}
    onChange={(event) => {
        this.setState({ checked: !this.state.checked });
    }}
/>API
Properties
License
MIT
