You've already forked nginx-proxy-manager
mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-11-01 05:31:05 +03:00
16 lines
318 B
TypeScript
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>
|
|
);
|
|
}
|