Files
admin/src/components/page.tsx

11 lines
275 B
TypeScript
Raw Normal View History

2026-03-18 17:13:31 +08:00
import type { ReactNode } from "react"
2026-04-11 17:12:16 +08:00
import { cn } from "@/lib/utils"
2026-03-18 17:13:31 +08:00
2026-04-11 17:12:16 +08:00
export function Page(props: { className?: string; children: ReactNode }) {
return (
<div className={cn("h-full flex flex-col p-6 gap-4", props.className)}>
{props.children}
</div>
)
2026-03-18 17:13:31 +08:00
}