mirror of
https://github.com/rzmk/learnhouse.git
synced 2025-12-19 04:19:25 +00:00
13 lines
No EOL
253 B
TypeScript
13 lines
No EOL
253 B
TypeScript
export default function CertificatesLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode
|
|
}) {
|
|
return (
|
|
<div className="min-h-screen bg-gray-50">
|
|
<div className="max-w-4xl mx-auto px-4 py-8">
|
|
{children}
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|