mirror of
https://github.com/jakejarvis/stanza.git
synced 2026-07-16 18:05:58 -04:00
16 lines
313 B
TypeScript
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>
|
|
);
|
|
}
|