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