mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
11 lines
164 B
Plaintext
11 lines
164 B
Plaintext
```js
|
|
// Button.stories.js
|
|
|
|
import React from 'react';
|
|
import { Button } from './Button';
|
|
|
|
export default {
|
|
title: 'Components/Button',
|
|
component: Button,
|
|
}
|
|
``` |