Type Alias MessageBoxProps

MessageBoxProps: {
    body: string | JSX.Element;
    canClose: boolean;
    footer?: string | JSX.Element;
    onClose?: () => void;
    title: string;
}