mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 03:01:05 +08:00
14 lines
230 B
Plaintext
14 lines
230 B
Plaintext
```ts
|
|
// Button.stories.tsx
|
|
|
|
import React from 'react';
|
|
|
|
import { Meta } from '@storybook/react';
|
|
|
|
import { Button, ButtonProps } from './Button';
|
|
|
|
export default {
|
|
title: 'Components/Button',
|
|
component: Button,
|
|
} as Meta;
|
|
``` |