mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
24 lines
379 B
Plaintext
24 lines
379 B
Plaintext
```md
|
|
<!-- Page.stories.mdx -->
|
|
|
|
import { Meta, Story } from '@storybook/addon-docs';
|
|
|
|
import { Page } from './Page';
|
|
|
|
<Meta title="Page" component={Page} />
|
|
|
|
|
|
export const Template = (args) => (
|
|
<Page {...args}>
|
|
<footer>{args.footer}</footer>
|
|
</Page>
|
|
);
|
|
|
|
<Story
|
|
name="CustomFooter"
|
|
args={{
|
|
footer: 'Built with Storybook',
|
|
}}>
|
|
{Template.bind({})}
|
|
</Story>
|
|
``` |