about summary refs log tree commit diff
path: root/src/App.web.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/App.web.tsx')
-rw-r--r--src/App.web.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/App.web.tsx b/src/App.web.tsx
index 67ef680a5..4f9fd3e53 100644
--- a/src/App.web.tsx
+++ b/src/App.web.tsx
@@ -3,7 +3,7 @@ import {SafeAreaProvider} from 'react-native-safe-area-context'
 import * as view from './view/index'
 import {RootStoreModel, setupState, RootStoreProvider} from './state'
 import {WebShell} from './view/shell/web'
-// import Toast from 'react-native-root-toast' TODO
+import {ToastContainer} from './view/com/util/Toast.web'
 
 function App() {
   const [rootStore, setRootStore] = useState<RootStoreModel | undefined>(
@@ -26,9 +26,9 @@ function App() {
       <SafeAreaProvider>
         <WebShell />
       </SafeAreaProvider>
+      <ToastContainer />
     </RootStoreProvider>
   )
-  // <Toast.ToastContainer /> TODO
 }
 
 export default App