mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 07:01:27 +08:00
38 lines
627 B
Plaintext
38 lines
627 B
Plaintext
```ts
|
|
// Button.stories.ts | Button.stories.tsx
|
|
|
|
import React from 'react';
|
|
|
|
import { Story, Meta } from '@storybook/react';
|
|
|
|
import {
|
|
Title,
|
|
Subtitle,
|
|
Description,
|
|
Primary,
|
|
ArgsTable,
|
|
Stories,
|
|
PRIMARY_STORY,
|
|
} from '@storybook/addon-docs';
|
|
|
|
import { Button, ButtonProps } from './Button';
|
|
|
|
export default {
|
|
title: 'Button',
|
|
component: Button,
|
|
parameters: {
|
|
docs: {
|
|
page: () => (
|
|
<>
|
|
<Title />
|
|
<Subtitle />
|
|
<Description />
|
|
<Primary />
|
|
<ArgsTable story={PRIMARY_STORY} />
|
|
<Stories />
|
|
</>
|
|
),
|
|
},
|
|
},
|
|
} as Meta;
|
|
``` |