Files
Corbin Crutchley 8859e22786 docs: add embeds
2023-12-20 01:57:33 -08:00

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>
);
}