web/app/account/layout.tsx
Aidan 8616db7649
All checks were successful
Build and Push Docker Image / build_and_push (push) Successful in 4s
Build and Push Nightly CI Image / build_and_push (push) Successful in 4s
Bump Dependencies / update-dependencies (push) Successful in 1m11s
task: cleanup/linting
2025-02-24 23:31:48 -05:00

13 lines
199 B
TypeScript

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