From c0e170612835d526078eea48f46fbd55ea40d1e0 Mon Sep 17 00:00:00 2001 From: Olivier Gagnon Date: Sat, 25 Sep 2021 14:45:12 -0400 Subject: [PATCH] rm the top level utils folder --- utils/README.md | 4 ---- utils/ui/DialogBox.tsx | 10 ---------- 2 files changed, 14 deletions(-) delete mode 100644 utils/README.md delete mode 100644 utils/ui/DialogBox.tsx diff --git a/utils/README.md b/utils/README.md deleted file mode 100644 index 7a8bd8365..000000000 --- a/utils/README.md +++ /dev/null @@ -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. diff --git a/utils/ui/DialogBox.tsx b/utils/ui/DialogBox.tsx deleted file mode 100644 index 17d58cc42..000000000 --- a/utils/ui/DialogBox.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import * as React from "react"; - -export function DialogBox(content: HTMLElement): React.ReactElement { - return ( -
- × - {content} -
- ); -}