diff options
author | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2019-11-27 23:42:38 +0100 |
---|---|---|
committer | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2019-11-27 23:42:38 +0100 |
commit | fe81f3d551f00d8a5ee5ee4c738e02ffc2d06ecb (patch) | |
tree | fda4baf4496e2c12f4f3990e04dc34cedc4e43cb /components/Buttons/PlainButton.stories.js | |
parent | 6e66497bc3e8b00c3f7b741fe6c19d966f877a3b (diff) | |
download | puszcza-fe81f3d551f00d8a5ee5ee4c738e02ffc2d06ecb.tar.gz puszcza-fe81f3d551f00d8a5ee5ee4c738e02ffc2d06ecb.zip |
Add PlainButton
Diffstat (limited to 'components/Buttons/PlainButton.stories.js')
-rw-r--r-- | components/Buttons/PlainButton.stories.js | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/components/Buttons/PlainButton.stories.js b/components/Buttons/PlainButton.stories.js new file mode 100644 index 0000000..67a657d --- /dev/null +++ b/components/Buttons/PlainButton.stories.js @@ -0,0 +1,18 @@ +import { storiesOf } from '@storybook/vue' +import { center } from '../../.storybook/decorators' + +import PlainButton from './PlainButton' + +const plainButton = { + text: 'Plain Button' +} + +storiesOf('PlainButton', module) + .addDecorator(center) + .add('default', () => { + return { + components: { PlainButton }, + template: `<plain-button :text="text" />`, + data: () => plainButton + } + }) |