mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 16:11:08 +08:00
Merge pull request #9940 from storybookjs/add/stories-for-layout-mdx
ADD stories for layout in mdx as example and regression test
This commit is contained in:
commit
92f9e23263
25
examples/official-storybook/stories/core/layout.stories.mdx
Normal file
25
examples/official-storybook/stories/core/layout.stories.mdx
Normal file
@ -0,0 +1,25 @@
|
||||
import { Button } from '@storybook/react/demo';
|
||||
|
||||
<Meta
|
||||
title="Core/Layout MDX"
|
||||
component={Button}
|
||||
id="core-layout-mdx"
|
||||
decorators={[storyFn => <div style={{ backgroundColor: 'yellow' }}>{storyFn()}</div>]}
|
||||
/>
|
||||
|
||||
# Selected
|
||||
|
||||
<Preview>
|
||||
<Story name="defaultValue">
|
||||
<Button>Hello world</Button>
|
||||
</Story>
|
||||
<Story name="padded" parameters={{ layout: 'padded' }}>
|
||||
<Button>Hello world</Button>
|
||||
</Story>
|
||||
<Story name="fullscreen" parameters={{ layout: 'fullscreen' }}>
|
||||
<Button>Hello world</Button>
|
||||
</Story>
|
||||
<Story name="centered" parameters={{ layout: 'centered' }}>
|
||||
<Button>Hello world</Button>
|
||||
</Story>
|
||||
</Preview>
|
Loading…
x
Reference in New Issue
Block a user