kgroad-frontend2/src/app/layout.tsx
Vladislav Khorev 80a3f658b9 release004
2024-03-22 08:39:52 +00:00

33 lines
605 B
TypeScript

import { ReactNode } from "react";
type Props = {
children: ReactNode;
};
/*
<<<<<<< HEAD
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<head>
</head>
<body>
<Providers>
<Navbar />
<div className="app">{children}</div>
<Footer />
</Providers>
</body>
{<GoogleAnalytics gaId={process.env.NEXT_PUBLIC_GOOGLE_ANALYTICS || ""} />}
</html>
);
=======*/
export default function RootLayout({ children }: Props) {
return children;
//>>>>>>> ali
}