Files
react-editor-shopify-nextjs/app/layout.tsx
2026-06-06 11:45:24 -04:00

18 lines
363 B
TypeScript

import type { ReactNode } from "react";
import "./globals.css";
import { Providers } from "./providers";
export const metadata = {
title: "Shopify Storefront",
};
export default function RootLayout({ children }: { children: ReactNode }) {
return (
<html lang="en">
<body>
<Providers>{children}</Providers>
</body>
</html>
);
}