rm the top level utils folder

This commit is contained in:
Olivier Gagnon 2021-09-25 14:45:12 -04:00
parent 06f716c0fa
commit c0e1706128
2 changed files with 0 additions and 14 deletions

@ -1,4 +0,0 @@
This directory contains anything that does not represent an actual component of
the game. Instead, it contains utility classes, functions, etc.
The `/helper` directory contains helper functions.

@ -1,10 +0,0 @@
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>
);
}