Files
2023-12-20 00:52:51 -08:00

13 lines
260 B
JavaScript

export const metadata = {
title: "Next.js use Hook",
description: "For use in the Next.js Suspense article on Unicorn Utterances",
};
export default function RootLayout({ children }) {
return (
<html lang="en">
<body>{children}</body>
</html>
);
}