import { VStack } from '../../components/elements/LayoutPrimitives' import { applyStoredTheme } from '../../lib/themeUpdater' type LoadingViewProps = { bgColor?: string } export function LoadingView(props: LoadingViewProps): JSX.Element { applyStoredTheme(false) return ( ) }