mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 07:01:53 +08:00
11 lines
188 B
Plaintext
11 lines
188 B
Plaintext
```js
|
|
// Button.stories.js
|
|
|
|
import { Button } from './Button';
|
|
export default {
|
|
title: 'Button',
|
|
component: Button,
|
|
};
|
|
|
|
export const Sample = () => <Button label="hello button" />;
|
|
``` |