about summary refs log tree commit diff
path: root/src/view/shell/web/index.tsx
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2023-01-26 22:25:38 -0600
committerPaul Frazee <pfrazee@gmail.com>2023-01-26 22:25:38 -0600
commit4b33cdb7ec20ba449941083f29726bea28f0f25b (patch)
treeee8e9c1d9a0b9e850e111db2939d1cbd7ed0cd20 /src/view/shell/web/index.tsx
parent24559599f3b340a071e96f15b17deb914338d80b (diff)
downloadvoidsky-4b33cdb7ec20ba449941083f29726bea28f0f25b.tar.zst
Implement modals for web
Diffstat (limited to 'src/view/shell/web/index.tsx')
-rw-r--r--src/view/shell/web/index.tsx3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/view/shell/web/index.tsx b/src/view/shell/web/index.tsx
index 44a4dd8e5..a4232eab2 100644
--- a/src/view/shell/web/index.tsx
+++ b/src/view/shell/web/index.tsx
@@ -9,6 +9,7 @@ import {Onboard} from '../../screens/Onboard'
 import {Login} from '../../screens/Login'
 import {ErrorBoundary} from '../../com/util/ErrorBoundary'
 import {Lightbox} from '../../com/lightbox/Lightbox'
+import {Modal} from '../../com/modals/Modal'
 import {usePalette} from '../../lib/hooks/usePalette'
 import {s} from '../../lib/styles'
 
@@ -21,6 +22,7 @@ export const WebShell: React.FC = observer(() => {
     return (
       <View style={styles.outerContainer}>
         <Login />
+        <Modal />
       </View>
     )
   }
@@ -47,6 +49,7 @@ export const WebShell: React.FC = observer(() => {
       ))}
       <DesktopLeftColumn />
       <DesktopRightColumn />
+      <Modal />
       <Lightbox />
     </View>
   )