diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-01-26 22:08:10 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-01-26 22:08:10 -0600 |
commit | 24559599f3b340a071e96f15b17deb914338d80b (patch) | |
tree | 642e91c88aa859e9fca0f7e9941f0c9c67f3c210 /src/App.web.tsx | |
parent | 20eaac6acd9e7b310ace864f6661c1a0e3ea169b (diff) | |
download | voidsky-24559599f3b340a071e96f15b17deb914338d80b.tar.zst |
Implement web toast
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 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 |