mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
14 lines
278 B
Plaintext
14 lines
278 B
Plaintext
```js
|
|
// Button.stories.js | Button.stories.jsx | Button.stories.ts | Button.stories.tsx
|
|
|
|
import Button from './Button';
|
|
|
|
export default {
|
|
title: 'Button',
|
|
component: Button,
|
|
// Sets the layout parameter component wide.
|
|
parameters:{
|
|
layout:'centered',
|
|
},
|
|
};
|
|
``` |