diff options
author | Ashelyn Rose <git@ashen.earth> | 2025-02-13 23:19:45 -0700 |
---|---|---|
committer | Ashelyn Rose <git@ashen.earth> | 2025-02-13 23:19:45 -0700 |
commit | b5d6d25912993b91bc1b3ec52c352431398c36d9 (patch) | |
tree | 4aac11f171e826e95ace3c4d63624a2bbd4c3e91 /ui/index.html | |
parent | 8a0c92f80a797f40bc06f524d37247273351be8e (diff) |
React with ui -> app IPC
Diffstat (limited to 'ui/index.html')
-rw-r--r-- | ui/index.html | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/ui/index.html b/ui/index.html index 077ce1c..3c05268 100644 --- a/ui/index.html +++ b/ui/index.html @@ -1,7 +1,11 @@ <!doctype html> <html> + <head> + <meta charset="UTF-8"/> + <meta name="viewport" content="width=device-width,initial-scale=1.0"/> + </head> <body> - <p>Minimum viable binary!</p> - <p>I think hot-reloading even works?</p> + <div id="react_root_target"/> + <script type="module" src="/index.tsx"></script> </body> </html> |