mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 22:11:15 +08:00
24 lines
657 B
JavaScript
24 lines
657 B
JavaScript
/* eslint-disable storybook/default-exports */
|
|
import React from 'react';
|
|
import { Button } from '../../components/react-demo';
|
|
|
|
// NOTE: commented out default since these stories are re-exported
|
|
// in the primary file './csf-docs-with-mdx-docs.stories.mdx'
|
|
//
|
|
// export default {
|
|
// title: 'Addons/Docs/csf-with-mdx-docs',
|
|
// component: Button,
|
|
// };
|
|
|
|
export const Basic = () => <Button>Basic</Button>;
|
|
|
|
export const WithArgs = (args) => <Button {...args} />;
|
|
WithArgs.args = { children: 'with args' };
|
|
|
|
export const WithTemplate = WithArgs.bind({});
|
|
WithTemplate.args = { children: 'with template' };
|
|
|
|
export const StoryObject = {
|
|
render: Basic,
|
|
};
|