import type { Meta, StoryObj } from 'storybook-react-rsbuild'; import { Tabs, TabsList, TabsContent } from '../components/ui'; const meta = { title: 'Navigation/Tabs', component: Tabs, parameters: { docs: { description: { component: 'Radix Tabs. `Tabs` is the root, `TabsList` takes `items`, and `TabsContent` matches each `value`.', }, }, }, argTypes: { defaultValue: { control: 'text' }, value: { control: 'text' }, onValueChange: { action: 'value changed' }, disabled: { control: 'boolean' }, }, } satisfies Meta; export default meta; type Story = StoryObj; export const Playground: Story = { render: () => ( Project at a glance. Recent activity feed. Preferences and configuration. ), };