mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 06:11:05 +08:00
130 lines
2.9 KiB
Markdown
130 lines
2.9 KiB
Markdown
```ts filename="Button.stories.ts" renderer="angular" language="ts"
|
|
import type { Meta } from '@storybook/angular';
|
|
|
|
import { Button } from './button.component';
|
|
|
|
const meta: Meta<Button> = {
|
|
/* 👇 The title prop is optional.
|
|
* See https://storybook.js.org/docs/configure/#configure-story-loading
|
|
* to learn how to generate automatic titles
|
|
*/
|
|
title: 'Button',
|
|
component: Button,
|
|
parameters: {
|
|
backgrounds: {
|
|
values: [
|
|
{ name: 'red', value: '#f00' },
|
|
{ name: 'green', value: '#0f0' },
|
|
],
|
|
},
|
|
},
|
|
};
|
|
|
|
export default meta;
|
|
```
|
|
|
|
```js filename="Button.stories.js|jsx|mjs|ts|tsx" renderer="common" language="js"
|
|
import { Button } from './Button';
|
|
|
|
export default {
|
|
/* 👇 The title prop is optional.
|
|
* See https://storybook.js.org/docs/configure/#configure-story-loading
|
|
* to learn how to generate automatic titles
|
|
*/
|
|
title: 'Button',
|
|
component: Button,
|
|
};
|
|
|
|
export const Primary = {
|
|
args: {
|
|
primary: true,
|
|
label: 'Button',
|
|
},
|
|
parameters: {
|
|
backgrounds: {
|
|
values: [
|
|
{ name: 'red', value: '#f00' },
|
|
{ name: 'green', value: '#0f0' },
|
|
],
|
|
},
|
|
},
|
|
};
|
|
```
|
|
|
|
```js filename="Button.stories.js|jsx" renderer="react" language="js"
|
|
import React from 'react';
|
|
|
|
import { Button } from './Button';
|
|
|
|
export default {
|
|
/* 👇 The title prop is optional.
|
|
* See https://storybook.js.org/docs/configure/#configure-story-loading
|
|
* to learn how to generate automatic titles
|
|
*/
|
|
title: 'Button',
|
|
component: Button,
|
|
//👇 Creates specific parameters for the story
|
|
parameters: {
|
|
backgrounds: {
|
|
values: [
|
|
{ name: 'red', value: '#f00' },
|
|
{ name: 'green', value: '#0f0' },
|
|
],
|
|
},
|
|
},
|
|
};
|
|
```
|
|
|
|
```ts filename="Button.stories.ts|tsx" renderer="react" language="ts-4-9"
|
|
import { Button } from './Button';
|
|
|
|
import type { Meta } from '@storybook/react';
|
|
|
|
const meta = {
|
|
/* 👇 The title prop is optional.
|
|
* See https://storybook.js.org/docs/configure/#configure-story-loading
|
|
* to learn how to generate automatic titles
|
|
*/
|
|
title: 'Button',
|
|
component: Button,
|
|
//👇 Creates specific parameters for the story
|
|
parameters: {
|
|
backgrounds: {
|
|
values: [
|
|
{ name: 'red', value: '#f00' },
|
|
{ name: 'green', value: '#0f0' },
|
|
],
|
|
},
|
|
},
|
|
} satisfies Meta<typeof Button>;
|
|
|
|
export default meta;
|
|
```
|
|
|
|
```ts filename="Button.stories.ts|tsx" renderer="react" language="ts"
|
|
import { Button } from './Button';
|
|
|
|
import type { Meta } from '@storybook/react';
|
|
|
|
const meta: Meta<typeof Button> = {
|
|
/* 👇 The title prop is optional.
|
|
* See https://storybook.js.org/docs/configure/#configure-story-loading
|
|
* to learn how to generate automatic titles
|
|
*/
|
|
title: 'Button',
|
|
component: Button,
|
|
//👇 Creates specific parameters for the story
|
|
parameters: {
|
|
backgrounds: {
|
|
values: [
|
|
{ name: 'red', value: '#f00' },
|
|
{ name: 'green', value: '#0f0' },
|
|
],
|
|
},
|
|
},
|
|
};
|
|
|
|
export default meta;
|
|
```
|
|
|