2025-05-20 10:08:24 +00:00
|
|
|
import { cn } from "@repo/shadcn-ui/lib/utils";
|
2025-05-19 16:15:01 +00:00
|
|
|
import { PropsWithChildren } from "react";
|
|
|
|
|
|
2025-05-20 10:08:24 +00:00
|
|
|
export const AppContent = ({ className, children }: PropsWithChildren<{ className?: string }>) => {
|
|
|
|
|
return <div className={cn("flex flex-1 flex-col gap-4 p-4 pt-0", className)}>{children}</div>;
|
2025-05-19 16:15:01 +00:00
|
|
|
};
|