import type { Meta, StoryObj } from '@storybook/react-vite'; import { ThemeSwitcher } from '../../src/ui/ThemeSwitcher/ThemeSwitcher'; const meta: Meta = { title: 'UI/ThemeSwitcher', component: ThemeSwitcher, parameters: { layout: 'centered' }, tags: ['autodocs'], }; export default meta; type Story = StoryObj; export const Default: Story = {};