import React from 'react'; import { RadioGroup, RadioGroupItem } from "@/components/ui/radio-group"; import { Label } from "@/components/ui/label"; interface RobotModelSelectorProps { robotModel: string; onValueChange: (model: string) => void; } const RobotModelSelector: React.FC = ({ robotModel, onValueChange }) => { return

Select Robot Model

; }; export default RobotModelSelector;