mirror of
https://github.com/KuekHaoYang/KVideo.git
synced 2026-08-18 10:13:43 +08:00
15 lines
241 B
TypeScript
15 lines
241 B
TypeScript
import { VideoTogetherScript } from '@/components/VideoTogetherScript';
|
|
|
|
export default function IPTVLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<>
|
|
{children}
|
|
<VideoTogetherScript />
|
|
</>
|
|
);
|
|
}
|