storybook/docs/snippets/react/page-story-slots.js.mdx
2021-05-06 21:05:56 +01:00

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