mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 21:01:08 +08:00
CLI templates: Marko => module format
This commit is contained in:
parent
3f21c949fd
commit
bf4073b073
@ -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);
|
||||
|
@ -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 });
|
||||
|
Loading…
x
Reference in New Issue
Block a user