import type { Meta, StoryObj } from '@storybook/react-vite'; import { Modal } from '../index'; const meta: Meta = { title: 'UI kit/Modal/ModalContent', component: Modal.Content, tags: ['autodocs'], }; export default meta; type Story = StoryObj; export const Default: Story = { args: { children: 'Anything can be here. Any React node.', }, };