You've already forked nginx-proxy-manager
mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-11-15 22:41:05 +03:00
7 lines
164 B
TypeScript
7 lines
164 B
TypeScript
interface Props {
|
|
children: React.ReactNode;
|
|
}
|
|
export function SiteContainer({ children }: Props) {
|
|
return <div className="container-xl py-3">{children}</div>;
|
|
}
|