Files
msgapp/src/app/layout.tsx

23 lines
346 B
TypeScript
Raw Normal View History

2025-10-08 20:55:43 +09:00
import type { Metadata } from "next";
import "./globals.css";
export const metadata: Metadata = {
2025-10-08 21:12:12 +09:00
title: "msg App",
description: "msg App",
2025-10-08 20:55:43 +09:00
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
2025-10-08 21:12:12 +09:00
<body>
2025-10-08 20:55:43 +09:00
{children}
</body>
</html>
);
}