import { useState } from 'react' import { Box, Button, Typography } from '@mui/material' import { Meta, StoryObj } from '@storybook/react' import Dialog from '..' import { DialogProps } from '../types' const meta: Meta = { title: '@baseapp-frontend | designSystem/Dialogs/BaseDialog', component: Dialog, } export default meta type Story = StoryObj const DialogTemplate = (args: any) => { const [open, setOpen] = useState(false) const handleClickOpen = () => { setOpen(true) } const handleClose = () => { setOpen(false) } return ( <> Dialog Title This is a sample dialog content. It can hold any content you would like to display in a dialog. ) } export const Default: Story = { render: (args) => , args: { open: false, }, }