import { storiesOf } from '@storybook/vue';
import MyButton from '~/components/Button.vue';
import Centered from '@storybook/addon-centered';
storiesOf("Button", module)
.addDecorator(Centered)
.add("rounded button", () => ({
template: ' 👍 A Button with rounded edges'
}))
.add("normal button", () => ({
components: { MyButton },
template: 'A Button with square edges'
}));