koperasi/services/frontend/app/components/page-container.tsx
2025-08-08 14:12:40 +07:00

19 lines
452 B
TypeScript

import type React from "react";
import { ScrollArea } from "~/components/ui/scroll-area";
export default function PageContainer({
children,
scrollable = false,
}: {
children: React.ReactNode;
scrollable?: boolean;
}) {
return scrollable ? (
<ScrollArea className="h-[calc(100dvh-52px)]">
<div className="h-full p-4 md:px-8">{children}</div>
</ScrollArea>
) : (
<div className="h-full p-4 md:px-8">{children}</div>
);
}