1
0
mirror of https://github.com/NginxProxyManager/nginx-proxy-manager.git synced 2025-11-01 05:31:05 +03:00
Files
nginx-proxy-manager/frontend/src/components/LoadingPage.tsx

16 lines
318 B
TypeScript

import { Loading, Page } from "src/components";
interface Props {
label?: string;
noLogo?: boolean;
}
export function LoadingPage({ label, noLogo }: Props) {
return (
<Page className="page-center">
<div className="container-tight py-4">
<Loading label={label} noLogo={noLogo} />
</div>
</Page>
);
}