import { Center, Container, RingProgress, Text, Title, useMantineTheme } from "@mantine/core" import { Logo } from "components/Logo" import { useAppLoading } from "hooks/useAppLoading" export function LoadingPage() { const theme = useMantineTheme() const { loadingPercentage, loadingStepLabel } = useAppLoading() return (
CommaFeed
{loadingPercentage}% } />
{loadingStepLabel &&
{loadingStepLabel}
}
) }