import { ArrowLeft, Eye } from "lucide-react"; import { useNavigate } from "react-router"; import { useState } from "react"; export default function ParameterConfiguration() { const navigate = useNavigate(); const [transmissionVoltage, setTransmissionVoltage] = useState("1500V"); const [transmissionCurrent, setTransmissionCurrent] = useState("10A"); const [pulseWidthOptions] = useState([ { value: "0.25s", checked: true }, { value: "0.5s", checked: true }, { value: "1s", checked: true }, { value: "2s", checked: true }, { value: "4s", checked: true }, { value: "8s", checked: true }, { value: "16s", checked: true }, { value: "32s", checked: true }, { value: "64s", checked: true }, ]); const [waveformOptions] = useState([ { value: "0+0-", checked: true }, { value: "+0-0", checked: true }, { value: "+-", checked: true }, ]); const [samplingRateOptions] = useState([ { value: "50Hz", checked: true }, { value: "60Hz", checked: true }, { value: "100Hz", checked: true }, { value: "1000Hz", checked: true }, ]); return (
配置设备型号的详细参数