blob: eecc3c18a2b0a5f10d8b61139c77469a10b46c53 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import type { Meta, StoryObj } from '@storybook/react';
import { ThemeToggle } from './theme-toggle';
const meta = {
component: ThemeToggle,
title: 'Organisms/Forms/Settings/Theme',
} satisfies Meta<typeof ThemeToggle>;
export default meta;
type Story = StoryObj<typeof meta>;
export const Example: Story = {
args: {},
};
|