"use client"; import { YOUTUBE_CATEGORIES } from "@/lib/constants"; type Props = { value: string; onChange: (value: string) => void; }; export function CategorySelect({ value, onChange }: Props) { return ( ); }