diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-01-26 21:54:47 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-01-26 21:54:47 -0600 |
commit | 20eaac6acd9e7b310ace864f6661c1a0e3ea169b (patch) | |
tree | b1a4711bb939d07781c38073bf56c63a0ad877e8 /src/view/shell/web/index.tsx | |
parent | 883d5749ed41608d6934217df315826002769e85 (diff) | |
download | voidsky-20eaac6acd9e7b310ace864f6661c1a0e3ea169b.tar.zst |
Add lightbox for web
Diffstat (limited to 'src/view/shell/web/index.tsx')
-rw-r--r-- | src/view/shell/web/index.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/view/shell/web/index.tsx b/src/view/shell/web/index.tsx index 1059aa280..44a4dd8e5 100644 --- a/src/view/shell/web/index.tsx +++ b/src/view/shell/web/index.tsx @@ -8,6 +8,7 @@ import {DesktopRightColumn} from './right-column' import {Onboard} from '../../screens/Onboard' import {Login} from '../../screens/Login' import {ErrorBoundary} from '../../com/util/ErrorBoundary' +import {Lightbox} from '../../com/lightbox/Lightbox' import {usePalette} from '../../lib/hooks/usePalette' import {s} from '../../lib/styles' @@ -46,6 +47,7 @@ export const WebShell: React.FC = observer(() => { ))} <DesktopLeftColumn /> <DesktopRightColumn /> + <Lightbox /> </View> ) // TODO |