mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2026-01-21 19:25:43 +00:00
7 lines
188 B
TypeScript
7 lines
188 B
TypeScript
interface Props {
|
|
children: React.ReactNode;
|
|
}
|
|
export function SiteContainer({ children }: Props) {
|
|
return <div className="container-xl py-3 min-w-0 overflow-x-auto">{children}</div>;
|
|
}
|