Implement modals for web
This commit is contained in:
parent
24559599f3
commit
4b33cdb7ec
6 changed files with 102 additions and 9 deletions
|
@ -9,6 +9,7 @@ import {Onboard} from '../../screens/Onboard'
|
|||
import {Login} from '../../screens/Login'
|
||||
import {ErrorBoundary} from '../../com/util/ErrorBoundary'
|
||||
import {Lightbox} from '../../com/lightbox/Lightbox'
|
||||
import {Modal} from '../../com/modals/Modal'
|
||||
import {usePalette} from '../../lib/hooks/usePalette'
|
||||
import {s} from '../../lib/styles'
|
||||
|
||||
|
@ -21,6 +22,7 @@ export const WebShell: React.FC = observer(() => {
|
|||
return (
|
||||
<View style={styles.outerContainer}>
|
||||
<Login />
|
||||
<Modal />
|
||||
</View>
|
||||
)
|
||||
}
|
||||
|
@ -47,6 +49,7 @@ export const WebShell: React.FC = observer(() => {
|
|||
))}
|
||||
<DesktopLeftColumn />
|
||||
<DesktopRightColumn />
|
||||
<Modal />
|
||||
<Lightbox />
|
||||
</View>
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue