Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | 1x 1x | import React from "react"; import { Stepper } from "@tencent/tea-component/lib/stepper"; export default function StepperExample() { const steps = [ { id: "prepare", label: "验证备案类型" }, { id: "info", label: "填写备案信息" }, { id: "upload", label: "上传资料" }, { id: "photo", label: "办理拍照" }, { id: "finish", label: "完成备案" }, ]; return <Stepper steps={steps} current="info" />; } |