All checks were successful
Build and Push Nightly CI Image / build_and_push (push) Successful in 1m47s
Build and Push Docker Image / build_and_push (push) Successful in 3s
11 lines
171 B
TypeScript
11 lines
171 B
TypeScript
export default function AccountLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode
|
|
}) {
|
|
return (
|
|
<div className="min-h-screen bg-gray-900">{children}</div>
|
|
)
|
|
}
|
|
|