import { Page } from "src/components"; import { intl } from "src/locale"; import styles from "./LoadingPage.module.css"; interface Props { label?: string; noLogo?: boolean; } export function LoadingPage({ label, noLogo }: Props) { return (
{noLogo ? null : (
)}
{label || intl.formatMessage({ id: "loading" })}
); }