mirror of
https://github.com/LukeHagar/unicorn-utterances.git
synced 2025-12-07 12:57:45 +00:00
14 lines
287 B
JavaScript
14 lines
287 B
JavaScript
export const metadata = {
|
|
title: "Next.js Server Actions Client Comps",
|
|
description:
|
|
"For use in the Next.js Server Actions article on Unicorn Utterances",
|
|
};
|
|
|
|
export default function RootLayout({ children }) {
|
|
return (
|
|
<html lang="en">
|
|
<body>{children}</body>
|
|
</html>
|
|
);
|
|
}
|