import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue, } from "@/components/ui/select"; interface FloorSelectProps { selectedFloor?: string; onChange: (value: string) => void; floors: number[]; } /** * Component chọn tầng (render động từ floors) */ export function FloorSelect({ selectedFloor, onChange, floors }: FloorSelectProps) { return ( ); }