summaryrefslogtreecommitdiff
path: root/src/App.tsx
diff options
context:
space:
mode:
authorElizabeth Hunt <elizabeth.hunt@simponic.xyz>2024-03-04 16:31:27 -0700
committerElizabeth Hunt <elizabeth.hunt@simponic.xyz>2024-03-04 16:31:27 -0700
commitd74523d15d37a1809a797beda962c957fba181b2 (patch)
treef5a7e7866940e477602249da8191d75988784ee7 /src/App.tsx
parentf4ad269f8b9f9b0bfcc60bb2584316c3fdd10d10 (diff)
downloadthe-abstraction-engine-d74523d15d37a1809a797beda962c957fba181b2.tar.gz
the-abstraction-engine-d74523d15d37a1809a797beda962c957fba181b2.zip
checkpoint
Diffstat (limited to 'src/App.tsx')
-rw-r--r--src/App.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/App.tsx b/src/App.tsx
index 0ae052f..3f3f67d 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -4,8 +4,8 @@ import { Miscellaneous } from "./engine/config";
export const App = () => {
return (
<div className="main">
- <div id="modal" className="modal">
- <div className="modal-content">
+ <div id={Miscellaneous.MODAL_ID} className="modal">
+ <div id={Miscellaneous.MODAL_CONTENT_ID} className="modal-content">
<span className="close">&times;</span>
<p>Some text in the Modal..</p>
</div>