next.js/examples/next-forms/app/layout.tsx
layout.tsx19 lines320 B
import "./global.css";

export const metadata = {
  title: "Next.js Forms Example",
  description: "Example application with forms and Postgres.",
};

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