mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 02:31:07 +08:00
14 lines
295 B
Plaintext
14 lines
295 B
Plaintext
import { Button } from '@storybook/react/demo';
|
|
import { Story, Meta } from '@storybook/addon-docs/blocks';
|
|
|
|
<Meta
|
|
title="Button"
|
|
decorators={[storyFn => <div style={{ backgroundColor: 'yellow' }}>{storyFn()}</div>]}
|
|
/>
|
|
|
|
# Decorated story
|
|
|
|
<Story name="one">
|
|
<Button>One</Button>
|
|
</Story>
|