Files
Momento/memento-note/components/admin-content-area.tsx
sepehr edfd67b8bd
All checks were successful
Deploy to Production / Build and Deploy (push) Successful in 40s
fix: add overflow-y-auto to admin content area (email section truncated)
Made-with: Cursor
2026-04-25 22:16:14 +02:00

20 lines
386 B
TypeScript

import { cn } from '@/lib/utils'
export interface AdminContentAreaProps {
children: React.ReactNode
className?: string
}
export function AdminContentArea({ children, className }: AdminContentAreaProps) {
return (
<main
className={cn(
'flex-1 overflow-y-auto bg-gray-50 dark:bg-zinc-950 p-6',
className
)}
>
{children}
</main>
)
}