about summary refs log tree commit diff
path: root/src/App.web.tsx
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2023-01-26 12:53:46 -0600
committerPaul Frazee <pfrazee@gmail.com>2023-01-26 12:53:46 -0600
commita3d2db96457d87b7c9a874d699e51dd5f98750c1 (patch)
treec8eedc8ed83468f5c455903f532fe9cdd9bc9134 /src/App.web.tsx
parent751dfb20fd0d316da396e3c4fc53aaaaa8041dd1 (diff)
downloadvoidsky-a3d2db96457d87b7c9a874d699e51dd5f98750c1.tar.zst
Get MVP of web app running
Diffstat (limited to 'src/App.web.tsx')
-rw-r--r--src/App.web.tsx7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/App.web.tsx b/src/App.web.tsx
index 0be05486c..67ef680a5 100644
--- a/src/App.web.tsx
+++ b/src/App.web.tsx
@@ -1,7 +1,8 @@
 import React, {useState, useEffect} from 'react'
+import {SafeAreaProvider} from 'react-native-safe-area-context'
 import * as view from './view/index'
 import {RootStoreModel, setupState, RootStoreProvider} from './state'
-import {DesktopWebShell} from './view/shell/desktop-web'
+import {WebShell} from './view/shell/web'
 // import Toast from 'react-native-root-toast' TODO
 
 function App() {
@@ -22,7 +23,9 @@ function App() {
 
   return (
     <RootStoreProvider value={rootStore}>
-      <DesktopWebShell />
+      <SafeAreaProvider>
+        <WebShell />
+      </SafeAreaProvider>
     </RootStoreProvider>
   )
   // <Toast.ToastContainer /> TODO