Files
KVideo/app/iptv/layout.tsx
T

15 lines
241 B
TypeScript

import { VideoTogetherScript } from '@/components/VideoTogetherScript';
export default function IPTVLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<>
{children}
<VideoTogetherScript />
</>
);
}