Fix all type errors

This commit is contained in:
Paul Frazee 2023-01-26 11:25:52 -06:00
parent c4ba5e7fd5
commit 7e3f6f0306
45 changed files with 377 additions and 294 deletions

View file

@ -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