diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-01-26 11:25:52 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-01-26 11:25:52 -0600 |
commit | 7e3f6f030680a8cf7b5baa3ce6f33acd5766fca8 (patch) | |
tree | 38ad7a0c586caa6cd0635653cb812d602210b718 /src/App.web.tsx | |
parent | c4ba5e7fd507a2f5295fd3fcbcea0796223c744c (diff) | |
download | voidsky-7e3f6f030680a8cf7b5baa3ce6f33acd5766fca8.tar.zst |
Fix all type errors
Diffstat (limited to 'src/App.web.tsx')
-rw-r--r-- | src/App.web.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/App.web.tsx b/src/App.web.tsx index cc6f3815b..0be05486c 100644 --- a/src/App.web.tsx +++ b/src/App.web.tsx @@ -2,7 +2,7 @@ import React, {useState, useEffect} from 'react' import * as view from './view/index' import {RootStoreModel, setupState, RootStoreProvider} from './state' import {DesktopWebShell} from './view/shell/desktop-web' -import Toast from 'react-native-root-toast' +// import Toast from 'react-native-root-toast' TODO function App() { const [rootStore, setRootStore] = useState<RootStoreModel | undefined>( @@ -23,9 +23,9 @@ function App() { return ( <RootStoreProvider value={rootStore}> <DesktopWebShell /> - <Toast.ToastContainer /> </RootStoreProvider> ) + // <Toast.ToastContainer /> TODO } export default App |