Convert cra-react15 to module format

This commit is contained in:
Michael Shilman 2019-06-24 00:29:00 +08:00
parent 710b88f3b3
commit b07acdc8b4
4 changed files with 37 additions and 32 deletions

View File

@ -1,14 +1,10 @@
import { configure, addParameters } from '@storybook/react';
import { load, addParameters } from '@storybook/react';
import { create } from '@storybook/theming/create';
function loadStories() {
require('../src/stories');
}
addParameters({
options: {
theme: create({ colorPrimary: 'hotpink', colorSecondary: 'orangered' }),
},
});
configure(loadStories, module);
load(require.context('../src/stories', true, /\.stories\.js$/), module);

View File

@ -0,0 +1,22 @@
import React from 'react';
import { action } from '@storybook/addon-actions';
import { Button } from '@storybook/react/demo';
export default {
title: 'Button',
parameters: {
component: Button,
},
};
export const story1 = () => <Button onClick={action('clicked')}>Hello Button</Button>;
story1.title = 'with text';
export const story2 = () => (
<Button onClick={action('clicked')}>
<span role="img" aria-label="so cool">
😀 😎 👍 💯
</span>
</Button>
);
story2.title = 'with some emoji';

View File

@ -1,26 +0,0 @@
import React from 'react';
import { storiesOf } from '@storybook/react';
import { action } from '@storybook/addon-actions';
import { linkTo } from '@storybook/addon-links';
import { Button, Welcome } from '@storybook/react/demo';
storiesOf('Welcome', module)
.addParameters({
component: Welcome,
})
.add('to Storybook', () => <Welcome showApp={linkTo('Button')} />);
storiesOf('Button', module)
.addParameters({
component: Button,
})
.add('with text', () => <Button onClick={action('clicked')}>Hello Button</Button>)
.add('with some emoji', () => (
<Button onClick={action('clicked')}>
<span role="img" aria-label="so cool">
😀 😎 👍 💯
</span>
</Button>
));

View File

@ -0,0 +1,13 @@
import React from 'react';
import { linkTo } from '@storybook/addon-links';
import { Welcome } from '@storybook/react/demo';
export default {
title: 'Welcome',
parameters: {
component: Welcome,
},
};
export const story1 = () => <Welcome showApp={linkTo('Button')} />;
story1.title = 'to Storybook';