mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 07:21:17 +08:00
16 lines
314 B
Plaintext
16 lines
314 B
Plaintext
```ts
|
|
// Button.stories.ts | Button.stories.tsx
|
|
|
|
import React from 'react'
|
|
|
|
import { Meta } from '@storybook/react';
|
|
|
|
import { Button } from './Button';
|
|
|
|
export default {
|
|
component: Button,
|
|
title: 'Components/Button',
|
|
} as Meta;
|
|
|
|
export const Primary: React.VFC<{}> = () => <Button primary>Button</Button>;
|
|
``` |