You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

306 B

进度条

  • order: 0

标准的进度条。


var Progress = antd.Progress.Line;

React.render(
  <div>
    <Progress percent="30" />
    <Progress percent="70" status="exception" />
    <Progress percent="100" />
  </div>
  , document.getElementById('components-progress-demo-line'));