web/app/account/layout.tsx

13 lines
199 B
TypeScript
Raw Normal View History

2025-02-24 23:31:48 -05:00
import React from "react";
export default function AccountLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<div className="min-h-screen bg-gray-900">{children}</div>
)
}