storybook/examples/official-storybook/stories/addon-docs/csf-with-mdx-docs.stories.js
2022-04-12 14:59:21 +08:00

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,
};