storybook/docs/snippets/preact/button-story.js.mdx
2022-02-24 09:35:05 +01:00

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' />;
```