import type { Meta, StoryObj } from '@storybook/react-vite'; import { Tag, TagGroup } from './TagGroup'; const meta: Meta = { component: TagGroup, parameters: { layout: 'centered', }, tags: ['autodocs'], argTypes: {}, args: { label: 'Ice cream flavor', selectionMode: 'single', }, }; export default meta; type Story = StoryObj; export const Example: Story = { render: (args) => ( Chocolate Mint Strawberry Vanilla ), };