mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
30 lines
645 B
Plaintext
30 lines
645 B
Plaintext
```ts
|
|
// Page.stories.ts
|
|
|
|
import { Meta, Story } from '@storybook/angular';
|
|
|
|
import { Page } from './page.component';
|
|
|
|
export default {
|
|
/* 👇 The title prop is optional.
|
|
* See https://storybook.js.org/docs/angular/configure/overview#configure-story-loading
|
|
* to learn how to generate automatic titles
|
|
*/
|
|
title: 'Page',
|
|
component: Page,
|
|
} as Meta;
|
|
|
|
|
|
const Template: Story = (args) => ({
|
|
props: args,
|
|
template: `
|
|
<storybook-page>
|
|
<ng-container footer>${args.footer}</ng-container>
|
|
</storybook-page>`,
|
|
});
|
|
|
|
export const CustomFooter = Template.bind({});
|
|
CustomFooter.args = {
|
|
footer: 'Built with Storybook',
|
|
};
|
|
``` |