All files / src/stepper/_example StepperProcessExample.jsx

100% Statements 2/2
100% Branches 0/0
100% Functions 1/1
100% Lines 2/2

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: "备案类型", tip: "初审 1-3 个工作日" },
    { id: "info", label: "备案信息" },
    { id: "upload", label: "上传资料" },
    { id: "photo", label: "办理拍照" },
    { id: "finish", label: "完成备案" },
  ];
  return <Stepper type="process" steps={steps} />;
}