import React from 'react'; import type { Meta, StoryObj } from '@storybook/react-vite'; import { Button } from '../Button/Button'; import { SectionControls } from './SectionControls/SectionControls'; import { Section } from './Section'; const meta: Meta = { title: 'UI kit/Layout/Section', component: Section, tags: ['autodocs'], }; export default meta; type Story = StoryObj; export const Default: Story = { args: { title: 'Section Title', children: Button} />, }, }; export const PreviousNextLinks: Story = { args: { title: 'Section Title', previous: , next: , children: Button} />, }, };