ProgressBar.js 189 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 import {Progress} from 'antd'; function ProgressBar({percent}){ return( <Progress style={{width:"50%"}}percent={percent} showInfo={true}/> ); } export default ProgressBar;