bitburner-src/utils/ui/DialogBox.tsx
2021-03-16 05:42:12 -04:00

9 lines
256 B
TypeScript

import * as React from "react";
export function DialogBox(content: HTMLElement): React.ReactElement {
return (<div className="dialog-box-content text">
<span className="dialog-box-close-button ">&times;</span>
{content}
</div>);
}