StepsBar.js
713 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import React,{PropTypes} from 'react';
import {Steps} from 'antd';
const Step = Steps.Step;
import cx from 'classnames';
class StepsBar extends React.Component {
constructor(props) {
super(props);
this.state={
}
}
componentDidMount() {
}
componentWillReceiveProps(nextProps){
}
componentWillUnmount(){
}
render() {
const { current, steps, direction, size, progressDot=false} = this.props;
return(
<div>
<Steps current={current} direction={direction} size={size} progressDot={progressDot}>
{steps.map((data,i)=>{
return(
<Step key={i} title={data.title} />
)
})}
</Steps>
</div>
)
}
}
export default StepsBar;