11 lines
326 B
TypeScript
11 lines
326 B
TypeScript
import { cn } from "@repo/shadcn-ui/lib/utils";
|
|
import { PropsWithChildren } from "react";
|
|
|
|
export const AppContent = ({ className, children }: PropsWithChildren<{ className?: string }>) => {
|
|
return (
|
|
<div className={cn("app-content flex flex-1 flex-col gap-4 p-4 pt-0", className)}>
|
|
{children}
|
|
</div>
|
|
);
|
|
};
|