import type { Meta, StoryObj } from '@storybook/react'; import { Nav } from './nav'; const meta = { component: Nav, title: 'Atoms/Layout/Nav', } satisfies Meta; export default meta; type Story = StoryObj; export const Example: Story = { args: { children: 'The nav contents.', }, };