import type { Metadata } from "next"; import "./globals.css"; export const metadata: Metadata = { title: "React Editor — Shopify Demo", description: "Standalone Next.js demo wiring the Shopify-aware React Editor.", }; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return (
{children} ); }