bitburner-src/utils/ui/DialogBox.tsx

9 lines
256 B
TypeScript
Raw Normal View History

2021-03-16 10:42:12 +01:00
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>);
}