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.

19 lines
321 B

9 years ago
import * as React from 'react';
import RcSteps from 'rc-steps';
export default class Steps extends React.Component {
static Step = RcSteps.Step;
static defaultProps = {
prefixCls: 'ant-steps',
iconPrefix: 'ant',
current: 0,
};
render() {
9 years ago
return (
<RcSteps {...this.props} />
9 years ago
);
}
}