Files
KVideo/app/player/layout.tsx
T
2025-12-24 23:53:24 +08:00

14 lines
220 B
TypeScript

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