import type { Meta, StoryObj } from '@storybook/react'; import React from 'react'; import { ModalAnchor } from '.'; type TComponent = typeof ModalAnchor; const meta: Meta = { title: 'Modals/ModalAnchor', component: ModalAnchor, tags: ['autodocs'], args: { anchor: , children: ( <>

Some text

), }, }; export default meta; export const Default: StoryObj = { args: {}, };