type TableOfContentsProps = { children: React.ReactNode; title: string; src: string; }; export function Video({ children, title, src }: TableOfContentsProps) { return (
); }