Files
stanza/registry/modules/framework-next/templates/app/layout.tsx
T
2026-05-20 11:52:53 -04:00

16 lines
313 B
TypeScript

import type { ReactNode } from "react";
import "./globals.css";
export const metadata = {
title: "stanza app",
description: "Generated by stanza",
};
export default function RootLayout({ children }: { children: ReactNode }) {
return (
<html lang="en">
<body>{children}</body>
</html>
);
}