23 lines
391 B
TypeScript
23 lines
391 B
TypeScript
import React from "react";
|
|
import type { Metadata } from "next";
|
|
|
|
import "./globals.css";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Next.js Address Book",
|
|
description: "From the RRv7 tutorial",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en">
|
|
<body>
|
|
{children}
|
|
</body>
|
|
</html>
|
|
);
|
|
} |