payment-backoffice/app/layout.tsx
2025-07-23 08:45:54 +02:00

26 lines
542 B
TypeScript

import ThemeRegistry from "@/config/ThemeRegistry";
import type { Metadata } from "next";
import ReduxProvider from "./redux/ReduxProvider";
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>
<ReduxProvider>
<ThemeRegistry>{children}</ThemeRegistry>
</ReduxProvider>
</body>
</html>
);
}