diff options
author | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2024-03-02 01:34:19 -0700 |
---|---|---|
committer | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2024-03-02 01:34:19 -0700 |
commit | cd6a3a56b0a9f27dd7250c7641776fe1bd184888 (patch) | |
tree | b26c2731e39c63b748ac3bc76cc977419bae4746 /src/App.tsx | |
parent | 1ec5a8d088f599d094f387abc6014f228607b605 (diff) | |
download | the-abstraction-engine-cd6a3a56b0a9f27dd7250c7641776fe1bd184888.tar.gz the-abstraction-engine-cd6a3a56b0a9f27dd7250c7641776fe1bd184888.zip |
add modal interaction with code
Diffstat (limited to 'src/App.tsx')
-rw-r--r-- | src/App.tsx | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/App.tsx b/src/App.tsx index add7c08..aadff37 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -4,6 +4,13 @@ import { Miscellaneous } from "./engine/config"; export const App = () => { return ( <div className="main"> + <div id="modal" className="modal"> + <div className="modal-content"> + <span className="close">×</span> + <p>Some text in the Modal..</p> + </div> + </div> + <div className="header"> <div className="nav"> <h1>the abstraction engine</h1> |