fbredius/storybook

View on GitHub
docs/snippets/preact/button-story.js.mdx

Summary

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