next.js/examples/with-polyfills/app/layout.tsx
layout.tsx23 lines445 B
import type { Metadata } from "next";

// Add your polyfills here or at the component level.
// For example...
// import 'resize-observer-polyfill'

export const metadata: Metadata = {
  title: "With Polyfills",
  description: "Next.js example with polyfills.",
};

export default function RootLayout({
  children,
}: Readonly<{
  children: React.ReactNode;
}>) {
  return (
    <html lang="en">
      <body>{children}</body>
    </html>
  );
}
Quest for Codev2.0.0
/
SIGN IN