import { useState } from 'react'; import { Bookmark, ChevronDown } from 'lucide-react'; import { cn } from '@/lib/utils'; type TableOfContentsProps = { children: React.ReactNode; title: string; src: string; }; export function Video({ children, title, src }: TableOfContentsProps) { return (
); }