bitburner-src/src/ui/React/DialogBox.tsx

9 lines
289 B
TypeScript
Raw Normal View History

import { AlertEvents } from "./AlertManager";
import React from "react";
import { Typography } from "@mui/material";
2022-08-28 11:33:38 +02:00
export function dialogBoxCreate(txt: string | JSX.Element): void {
AlertEvents.emit(typeof txt === "string" ? <Typography component="span">{txt}</Typography> : txt);
}