next.js/examples/with-mysql/app/layout.tsx
layout.tsx20 lines380 B
import type { Metadata } from "next";
import "./globals.css";

export const metadata: Metadata = {
  title: "PlanetScale MySQL + Next.js",
  description: "A Next.js app using Prisma with PlanetScale MySQL",
};

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