/* global React */ import Switch from '../../components/switch'; export default React.createClass({ displayName: 'SwitchTest', onChange (event, instance) { console.log('[SWITCH]', instance.getValue()); }, render () { return (

Switches

Default

With properties

Disabled

); } });