payment-backoffice/app/layout.tsx
Mitchell Magro 52784ffc85 Fixing build
2025-07-17 22:04:54 +02:00

23 lines
444 B
TypeScript

import ThemeRegistry from "@/config/ThemeRegistry";
import type { Metadata } from "next";
import "../styles/globals.scss";
export const metadata: Metadata = {
title: "Your App",
description: "Generated by Next.js",
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en">
<body>
<ThemeRegistry>{children}</ThemeRegistry>
</body>
</html>
);
}