mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
37 lines
980 B
Plaintext
37 lines
980 B
Plaintext
```ts
|
|
// MyComponent.stories.ts
|
|
|
|
import { Meta, Story } from '@storybook/angular';
|
|
|
|
import { MyComponent } from './MyComponent.component';
|
|
|
|
import someData from './data.json';
|
|
|
|
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: 'MyComponent',
|
|
component: MyComponent,
|
|
includeStories: ['SimpleStory', 'ComplexStory'], // 👈 Storybook loads these stories
|
|
excludeStories: /.*Data$/, // 👈 Storybook ignores anything that contains Data
|
|
} as Meta;
|
|
|
|
const Template: Story = (args) => ({
|
|
props: args,
|
|
});
|
|
|
|
export const simpleData = { foo: 1, bar: 'baz' };
|
|
export const complexData = { foo: 1, foobar: { bar: 'baz', baz: someData } };
|
|
|
|
export const SimpleStory = Template.bind({});
|
|
SimpleStory.args = {
|
|
data: simpleData,
|
|
};
|
|
|
|
export const ComplexStory = Template.bind({});
|
|
ComplexStory.args = {
|
|
data: complexData,
|
|
};
|
|
``` |