mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 04:31:06 +08:00
11 lines
220 B
Plaintext
11 lines
220 B
Plaintext
```js
|
|
// Button.stories.js | Button.stories.jsx
|
|
|
|
import React from 'react';
|
|
|
|
import { Button } from './Button';
|
|
|
|
export const Primary = () => <Button primary label="Button"/>;
|
|
|
|
Primary.storyName = 'I am the primary';
|
|
``` |