mirror of
https://github.com/LukeHagar/unicorn-utterances.git
synced 2025-12-08 04:22:03 +00:00
13 lines
268 B
JavaScript
13 lines
268 B
JavaScript
export const metadata = {
|
|
title: "Next.js Async Components",
|
|
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>
|
|
);
|
|
}
|