Files
KVideo/app/player/layout.tsx
T

20 lines
373 B
TypeScript

import { Metadata } from 'next';
import { VideoTogetherScript } from '@/components/VideoTogetherScript';
export const metadata: Metadata = {
referrer: 'no-referrer',
};
export default function PlayerLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<>
{children}
<VideoTogetherScript />
</>
);
}