mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 19:01:48 +08:00
14 lines
237 B
Plaintext
14 lines
237 B
Plaintext
```js
|
|
// Button.stories.js|jsx
|
|
|
|
/** @jsx h */
|
|
import { h } from 'preact';
|
|
import { Button } from './Button';
|
|
|
|
export default {
|
|
title: 'Button',
|
|
component: Button,
|
|
}
|
|
|
|
export const Primary = () => <Button primary label='Button' />;
|
|
``` |