mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
24 lines
427 B
Plaintext
24 lines
427 B
Plaintext
```js
|
|
// Page.stories.js
|
|
|
|
import React from 'react';
|
|
import { Story, Meta } from '@storybook/react';
|
|
import Page from './Page';
|
|
|
|
export default {
|
|
component: Page,
|
|
title: 'Page',
|
|
} as Meta;
|
|
|
|
const Template: Story<Page> = (args, { argTypes }) => (
|
|
<Page {...args}>
|
|
<footer>{args.footer}</footer
|
|
</Page>
|
|
);
|
|
|
|
export const CustomFooter = Template.bind({});
|
|
CustomFooter.args = {
|
|
footer: 'Built with Storybook',
|
|
};
|
|
```
|