mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 20:11:07 +08:00
Convert cra-react15 to module format
This commit is contained in:
parent
710b88f3b3
commit
b07acdc8b4
@ -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);
|
||||
|
22
examples/cra-react15/src/stories/button.stories.js
Normal file
22
examples/cra-react15/src/stories/button.stories.js
Normal 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';
|
@ -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>
|
||||
));
|
13
examples/cra-react15/src/stories/welcome.stories.js
Normal file
13
examples/cra-react15/src/stories/welcome.stories.js
Normal 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';
|
Loading…
x
Reference in New Issue
Block a user