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