payment-backoffice/app/layout.tsx
2025-07-14 19:58:58 +02:00

29 lines
641 B
TypeScript

import ThemeRegistry from "@/config/ThemeRegistry";
import type { Metadata } from "next";
import "../styles/globals.scss";
import { Providers } from "./providers/providers";
import { MSWProvider } from './providers/msw-provider';
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>
<Providers>
<MSWProvider>
<ThemeRegistry>{children}</ThemeRegistry>
</MSWProvider>
</Providers>
</body>
</html>
);
}