import { Loading, Page } from "src/components"; interface Props { label?: string; noLogo?: boolean; } export function LoadingPage({ label, noLogo }: Props) { return (
); }