diff --git a/client/src/pages/VideoPage.tsx b/client/src/pages/VideoPage.tsx index 1375b57..45a2d0c 100644 --- a/client/src/pages/VideoPage.tsx +++ b/client/src/pages/VideoPage.tsx @@ -31,7 +31,8 @@ const formatDate = (date: Date | string): string => { }); }; import { Button } from "@/components/ui/button"; -import { Share2, X, Edit3 } from "lucide-react"; +import { Input } from "@/components/ui/input"; +import { Share2, X, Edit3, Search } from "lucide-react"; import { apiRequest } from "@/lib/queryClient"; import { FacebookShareButton, @@ -52,6 +53,7 @@ export default function VideoPage() { const [, params] = useRoute("/video/:id"); const videoId = params?.id; const [showShareMenu, setShowShareMenu] = useState(false); + const [sidebarSearchQuery, setSidebarSearchQuery] = useState(""); // Fetch current video const { data: currentVideo, isLoading: videoLoading } = useQuery