SiteContainer.tsx 188 B

123456
  1. interface Props {
  2. children: React.ReactNode;
  3. }
  4. export function SiteContainer({ children }: Props) {
  5. return <div className="container-xl py-3 min-w-0 overflow-x-auto">{children}</div>;
  6. }