mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 01:51:05 +08:00
36 lines
547 B
Plaintext
36 lines
547 B
Plaintext
```js
|
|
// Button.stories.js
|
|
|
|
import React from 'react';
|
|
|
|
import {
|
|
Title,
|
|
Subtitle,
|
|
Description,
|
|
Primary,
|
|
ArgsTable,
|
|
Stories,
|
|
PRIMARY_STORY,
|
|
} from '@storybook/addon-docs';
|
|
|
|
import { Button } from './Button';
|
|
|
|
export default {
|
|
title: 'Components/Button',
|
|
component: Button,
|
|
parameters: {
|
|
docs: {
|
|
page: () => (
|
|
<>
|
|
<Title />
|
|
<Subtitle />
|
|
<Description />
|
|
<Primary />
|
|
<ArgsTable story={PRIMARY_STORY} />
|
|
<Stories />
|
|
</>
|
|
),
|
|
},
|
|
},
|
|
};
|
|
``` |