mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
9 lines
157 B
Plaintext
9 lines
157 B
Plaintext
```js
|
|
// Button.stories.js
|
|
|
|
import React from 'react';
|
|
|
|
import { Button } from './Button';
|
|
|
|
export const Primary = () => <Button primary>Button</Button>;
|
|
``` |