import { Example } from './Example'; import type { Meta, StoryObj } from '@storybook/react-vite'; const meta = { title: 'UI/Example', component: Example, } satisfies Meta; export default meta; type Story = StoryObj; export const Primary: Story = {};