import { ComponentProps, FunctionComponent } from 'react'; import { Dialog } from '@/common/components/molecules/Dialog/Dialog'; export interface IDialogCellProps { type: 'dialog'; value: ComponentProps; } export const DialogCell: FunctionComponent = ({ value }) => { return ; };