payment-backoffice/app/layout.tsx
Mitchell Magro 1dcfa081e0 s
2025-07-26 18:47:14 +02:00

28 lines
628 B
TypeScript

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