blob: f8df2230b6bafaf1b24fec79b48849f5107127a9 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
 | import type { Meta, StoryObj } from '@storybook/react';
import { Section } from './section';
const meta = {
  component: Section,
  title: 'Atoms/Layout/Section',
} satisfies Meta<typeof Section>;
export default meta;
type Story = StoryObj<typeof meta>;
export const Example: Story = {
  args: {
    children: 'The section contents.',
  },
};
 |