import type { Meta, StoryObj } from '@storybook/react'; import { TableOfContents } from '@/components/table-of-contents'; import { Markdown, Padding } from './decorators'; const meta: Meta = { title: 'Table of Contents', component: TableOfContents, decorators: [Markdown, Padding], args: { children: ( ), }, }; export default meta; type Story = StoryObj; export const Normal: Story = {};