CLI templates: Marko => module format

This commit is contained in:
Michael Shilman 2019-07-20 17:08:20 +08:00
parent 3f21c949fd
commit bf4073b073
2 changed files with 7 additions and 9 deletions

View File

@ -1,9 +1,4 @@
import { configure } from '@storybook/marko';
import { load } from '@storybook/marko';
// automatically import all files ending in *.stories.js
const req = require.context('../stories', true, /\.stories\.js$/);
function loadStories() {
req.keys().forEach(filename => req(filename));
}
configure(loadStories, module);
load(require.context('../stories', true, /\.stories\.js$/), module);

View File

@ -1,4 +1,7 @@
import { storiesOf } from '@storybook/marko';
import Welcome from './components/welcome/index.marko';
storiesOf('Welcome', module).add('welcome', () => ({ component: Welcome }));
export default {
title: 'Welcome',
};
export const welcome = () => ({ component: Welcome });