mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-02 05:03:44 +08:00
14 lines
226 B
Plaintext
14 lines
226 B
Plaintext
```js
|
|
// YourComponent.stories.js | YourComponent.stories.jsx
|
|
|
|
export default {
|
|
component: YourComponent,
|
|
decorators: [
|
|
(Story) => (
|
|
<div style={{ margin: '3em' }}>
|
|
<Story/>
|
|
</div>
|
|
),
|
|
],
|
|
}
|
|
``` |