mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 06:01:05 +08:00
23 lines
330 B
Plaintext
23 lines
330 B
Plaintext
```js
|
|
// Page.stories.js | Page.stories.jsx
|
|
|
|
import React from 'react';
|
|
|
|
import { Page } from './Page';
|
|
|
|
export default {
|
|
component: Page,
|
|
};
|
|
|
|
export const CustomFooter = {
|
|
args: {
|
|
footer: 'Built with Storybook',
|
|
},
|
|
render: (args) => (
|
|
<Page {...args}>
|
|
<footer>{args.footer}</footer>
|
|
</Page>
|
|
),
|
|
};
|
|
```
|