mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
2.6 KiB
2.6 KiB
import type { Meta, StoryObj } from '@storybook/angular';
import { MyComponent } from './MyComponent.component';
const meta: Meta<MyComponent> = {
component: MyComponent,
};
export default meta;
type Story = StoryObj<MyComponent>;
export const Default: Story = {};
export const Dark: Story = {
//👇 Overrides the current theme for this story to render it with the dark theme
globals: { theme: 'dark' },
};
import { MyComponent } from './MyComponent';
export default {
component: MyComponent,
};
export const Default = {};
export const Dark = {
//👇 Overrides the current theme for this story to render it with the dark theme
globals: { theme: 'dark' },
};
// Replace your-framework with the name of your framework
import type { Meta, StoryObj } from '@storybook/your-framework';
import { MyComponent } from './MyComponent';
const meta = {
component: MyComponent,
} satisfies Meta<typeof MyComponent>;
export default meta;
type Story = StoryObj<typeof meta>;
export const Default: Story = {};
export const Dark: Story = {
//👇 Overrides the current theme for this story to render it with the dark theme
globals: { theme: 'dark' },
};
// Replace your-framework with the name of your framework
import type { Meta, StoryObj } from '@storybook/your-framework';
import { MyComponent } from './MyComponent';
const meta: Meta<typeof MyComponent> = {
component: MyComponent,
};
export default meta;
type Story = StoryObj<typeof MyComponent>;
export const Default: Story = {};
export const Dark: Story = {
//👇 Overrides the current theme for this story to render it with the dark theme
globals: { theme: 'dark' },
};
export default {
component: 'my-component',
};
export const Default = {};
export const Dark = {
globals: { theme: 'dark' },
};
import type { Meta, StoryObj } from '@storybook/web-components';
const meta: Meta = {
component: 'my-component',
};
export default meta;
type Story = StoryObj;
export const Default: Story = {};
export const Dark: Story = {
//👇 Overrides the current theme for this story to render it with the dark theme
globals: { theme: 'dark' },
};