mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 06:41:11 +08:00
14 lines
249 B
Plaintext
14 lines
249 B
Plaintext
```js
|
|
// Button.stories.js | Button.stories.jsx
|
|
|
|
import React from 'react';
|
|
|
|
import { Button } from './Button';
|
|
|
|
export default {
|
|
component: Button,
|
|
title: 'Components/Button',
|
|
}
|
|
|
|
export const Primary = () => <Button primary>Button</Button>;
|
|
``` |