mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 06:31:27 +08:00
2.5 KiB
2.5 KiB
import type { Meta, StoryObj } from '@storybook/angular';
import { Checkbox } from './checkbox.component';
const meta: Meta<Checkbox> = {
component: Checkbox,
};
export default meta;
type Story = StoryObj<Checkbox>;
export const Unchecked: Story = {
args: {
label: 'Unchecked',
},
};
import { Checkbox } from './Checkbox';
export default {
component: Checkbox,
};
export const Unchecked = {
args: {
label: 'Unchecked',
},
};
// Replace your-framework with the name of your framework
import type { Meta, StoryObj } from '@storybook/your-framework';
import { Checkbox } from './Checkbox';
const meta = {
component: Checkbox,
} satisfies Meta<typeof Checkbox>;
export default meta;
type Story = StoryObj<typeof meta>;
export const Unchecked: Story = {
args: {
label: 'Unchecked',
},
};
// Replace your-framework with the name of your framework
import type { Meta, StoryObj } from '@storybook/your-framework';
import { Checkbox } from './Checkbox';
const meta: Meta<typeof Checkbox> = {
component: Checkbox,
};
export default meta;
type Story = StoryObj<typeof Checkbox>;
export const Unchecked: Story = {
args: {
label: 'Unchecked',
},
};
{/* Checkbox.stories.svelte */}
<script>
import { Meta, Story } from '@storybook/addon-svelte-csf';
import Checkbox from './Checkbox.svelte';
</script>
<meta title="MDX/Checkbox" component="{Checkbox}" />
<Story name="allCheckboxes">
<form>
<Checkbox id="Unchecked" label="Unchecked" />
<Checkbox id="Checked" label="Checked" {checked} />
<Checkbox appearance="secondary" id="second" label="Secondary" {checked} />
</form>
</Story>
export default {
title: 'Checkbox',
component: 'checkbox',
};
export const Unchecked = {
args: {
label: 'Unchecked',
},
};
import type { Meta, StoryObj } from '@storybook/web-components';
const meta: Meta = {
component: 'checkbox-element',
};
export default meta;
type Story = StoryObj;
export const Unchecked: Story = {
args: {
label: 'Unchecked',
},
};