feat: add robot edit modal
This commit is contained in:
@@ -55,10 +55,11 @@ interface RobotSettingsProps {
|
||||
handleStart: (settings: RobotSettings) => void;
|
||||
handleClose: () => void;
|
||||
initialSettings?: RobotSettings | null;
|
||||
|
||||
|
||||
}
|
||||
|
||||
export const RobotEditModal = ({ isOpen, handleStart, handleClose, initialSettings }: RobotSettingsProps) => {
|
||||
console.log("robot edit");
|
||||
const [robot, setRobot] = useState<RobotSettings | null>(null);
|
||||
// const [settings, setSettings] = useState<RobotEditOptions>({
|
||||
// name: '',
|
||||
|
||||
Reference in New Issue
Block a user