ADD basics storybook in example/polymer-cli

This commit is contained in:
Norbert de Langen 2017-11-03 10:52:07 +01:00
parent 75f0c9e59d
commit b4ed3c6257
No known key found for this signature in database
GPG Key ID: 976651DA156C2825
2 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,7 @@
import { configure } from '@storybook/polymer';
function loadStories() {
require('../src/stories');
}
configure(loadStories, module);

View File

@ -0,0 +1,5 @@
import { storiesOf } from '@storybook/polymer';
storiesOf('Welcome', module).add('Welcome', () =>
console.log('TODO', 'we do not know what to do here yet!')
);