import { AlertEvents } from "./AlertManager"; import React from "react"; import { Typography } from "@mui/material"; export function dialogBoxCreate(txt: string | JSX.Element, html = false): void { AlertEvents.emit( typeof txt !== "string" ? ( txt ) : html ? (
) : ( {txt} ), ); }