import React from 'react';
import Label from './index';

export default {
  title: 'Core/Controls/Label',
  component: Label
};

const Template = args => <Label {...args} />;

export const Default = Template.bind({});
Default.args = {
  children: 'Label'
};
