mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
22 lines
357 B
Plaintext
22 lines
357 B
Plaintext
```js
|
|
// Page.stories.js
|
|
|
|
import React from 'react';
|
|
import Page from './Page';
|
|
|
|
export default {
|
|
component: Page,
|
|
title: 'Page',
|
|
};
|
|
|
|
const Template = (args, { argTypes }) => (
|
|
<Page {...args}>
|
|
<footer>{args.footer}</footer
|
|
</Page>
|
|
);
|
|
|
|
export const CustomFooter = Template.bind({});
|
|
CustomFooter.args = {
|
|
footer: 'Built with Storybook',
|
|
};
|
|
``` |