diff options
Diffstat (limited to 'components/PurePostList.stories.js')
-rw-r--r-- | components/PurePostList.stories.js | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/components/PurePostList.stories.js b/components/PurePostList.stories.js deleted file mode 100644 index 134cd68..0000000 --- a/components/PurePostList.stories.js +++ /dev/null @@ -1,16 +0,0 @@ -import { storiesOf } from '@storybook/vue' - -import { postLink } from './PostLink.stories' - -import PurePostList from './PurePostList' - -export const posts = Array(5).fill(postLink) -console.log(posts) - -storiesOf('PurePostList', module).add('default', () => { - return { - components: { PurePostList }, - template: `<pure-post-list :posts="posts"/>`, - data: () => ({ posts }) - } -}) |