storybook/docs/snippets/angular/page-story-slots.mdx.mdx
2021-10-11 23:50:18 +01:00

25 lines
544 B
Plaintext

```md
<!-- Button.stories.mdx -->
import { Meta, Story } from '@storybook/addon-docs';
import { Page } from './page.component.ts';
<Meta title="Page" component={Page} />
<!-- Render functions are a framework specific feature to allow you control on how the component renders -->
<Story
name="CustomFooter"
args={{
footer: 'Built with Storybook',
}}
render={(args) => ({
props: args,
template:`
<storybook-page>
<ng-container footer>${args.footer}</ng-container>
</storybook-page>
`,
})} />
```