mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 23:21:15 +08:00
CLI: WEBPACK_REACT template MDX support
This commit is contained in:
parent
e64cecf7f1
commit
b4df872678
@ -14,6 +14,9 @@ export default async (npmOptions, { storyFormat = 'csf' }) => {
|
||||
'@storybook/addon-links',
|
||||
'@storybook/addons',
|
||||
];
|
||||
if (storyFormat === 'mdx') {
|
||||
packages.push('@storybook/addon-docs');
|
||||
}
|
||||
const versionedPackages = await getVersionedPackages(npmOptions, ...packages);
|
||||
|
||||
copyTemplate(__dirname, storyFormat);
|
||||
|
@ -0,0 +1,4 @@
|
||||
import { configure } from '@storybook/react';
|
||||
|
||||
// automatically import all files ending in *.stories.js
|
||||
configure(require.context('../stories', true, /\.stories\.js$/), module);
|
@ -0,0 +1,18 @@
|
||||
// you can use this file to add your custom webpack plugins, loaders and anything you like.
|
||||
// This is just the basic way to add additional webpack configurations.
|
||||
// For more information refer the docs: https://storybook.js.org/configurations/custom-webpack-config
|
||||
|
||||
// IMPORTANT
|
||||
// When you add this file, we won't add the default configurations which is similar
|
||||
// to "React Create App". This only has babel loader to load JavaScript.
|
||||
|
||||
module.exports = {
|
||||
plugins: [
|
||||
// your custom plugins
|
||||
],
|
||||
module: {
|
||||
rules: [
|
||||
// add your custom rules.
|
||||
],
|
||||
},
|
||||
};
|
@ -0,0 +1,15 @@
|
||||
import { Meta, Story, Preview } from '@storybook/addon-docs/blocks';
|
||||
import { linkTo } from '@storybook/addon-links';
|
||||
import { Welcome } from '@storybook/react/demo';
|
||||
|
||||
<Meta title="Welcome" />
|
||||
|
||||
# Welcome
|
||||
|
||||
This is a test document written in MDX that defines a `Welcome` story wrapped in a `Preview` doc block:
|
||||
|
||||
<Preview withToolbar>
|
||||
<Story name="to Storybook">
|
||||
<Welcome showApp={linkTo('Button')} />
|
||||
</Story>
|
||||
</Preview>
|
@ -0,0 +1,21 @@
|
||||
import { action } from '@storybook/addon-actions';
|
||||
import { Button } from '@storybook/react/demo';
|
||||
import { Meta, Story } from '@storybook/addon-docs/blocks';
|
||||
|
||||
<Meta title="Button" />
|
||||
|
||||
# Button
|
||||
|
||||
This `Button` document defines two stories:
|
||||
|
||||
<Story name="text">
|
||||
<Button onClick={action('clicked')}>Hello Button</Button>
|
||||
</Story>
|
||||
|
||||
<Story name="emoji">
|
||||
<Button onClick={action('clicked')}>
|
||||
<span role="img" aria-label="so cool">
|
||||
😀 😎 👍 💯
|
||||
</span>
|
||||
</Button>
|
||||
</Story>
|
Loading…
x
Reference in New Issue
Block a user