mirror of
https://github.com/yusufipk/YTChatHub.git
synced 2026-09-11 19:06:14 +00:00
16 lines
346 B
TypeScript
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>
|
|
);
|
|
}
|