"use client"; import { RESOLUTIONS } from "@/lib/constants"; type Props = { value: string; onChange: (value: string) => void; disabled?: boolean; }; export function ResolutionSelect({ value, onChange, disabled }: Props) { return ( ); }