import React from 'react';
import { storiesOf } from '@storybook/react';
import { action } from '@storybook/addon-actions';
import { StoryContainer } from './helpers';
import { Radio } from '../src';
export default storiesOf('Radio', module)
.addDecorator((getStory) => (
{ getStory() }
))
.addWithInfo('Default', () => (
))
.addWithInfo('Disabled', () => (
))
.addWithInfo('With help text', () => (
));