Files
YTChatHub/apps/client/app/layout.tsx
T

16 lines
346 B
TypeScript

import './globals.css';
import type { ReactNode } from 'react';
export const metadata = {
title: 'YouTube Chat Client',
description: 'High-performance YouTube Live chat dashboard'
};
export default function RootLayout({ children }: { children: ReactNode }) {
return (
<html lang="en">
<body>{children}</body>
</html>
);
}