mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-10 17:53:55 +01:00
11 lines
258 B
TypeScript
11 lines
258 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 ">×</span>
|
|
{content}
|
|
</div>
|
|
);
|
|
}
|