import React from 'react' import type { Meta, StoryObj } from '@storybook/react' import { Section } from './Section' import { Header } from '../Header/Header' const meta: Meta = { title: 'Section', component: Section } export default meta type Story = StoryObj export const Example: Story = { render: () => ( <>
Section 1
This is a section
Section 2
This is another section
) }