mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 07:21:17 +08:00
13 lines
266 B
JavaScript
13 lines
266 B
JavaScript
import React from 'react';
|
|
import { Form } from '@storybook/components';
|
|
|
|
const { Button } = Form;
|
|
|
|
export default {
|
|
// Title not needed due to CSF3 auto-title
|
|
// title: 'AutoTitle',
|
|
component: Button,
|
|
};
|
|
|
|
export const Basic = () => <Button>Click me</Button>;
|