import * as React from 'react'
import { storiesOf } from '@storybook/react'
import centered from '@storybook/addon-centered/react'
import { ToggleBox } from './ToggleBox'
storiesOf('ToggleBox', module)
.addDecorator(centered)
.add('Simple', () => (
))
.add('With active item', () => (
))
.add('With disable items', () => (
))
.add('Without border (borderless)', () => (
))