import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "~/components/ui/select"; import { Study } from '../../types/Study'; interface StudySelectorProps { studies: Study[]; selectedStudy: Study | null; onStudyChange: (studyId: string) => void; } export function StudySelector({ studies, selectedStudy, onStudyChange }: StudySelectorProps) { return ( ); }