ant-design/components/progress/index.jsx

13 lines
224 B
React
Raw Normal View History

2016-04-05 16:51:26 +08:00
import React from 'react';
2016-03-31 17:46:35 +08:00
import Line from './Line';
import Circle from './Circle';
2015-06-14 12:55:44 +08:00
2016-04-05 16:51:26 +08:00
const Progress = Line;
Progress.Line = Line;
Progress.Circle = (props) => {
return <Circle {...props} />;
2015-06-14 12:55:44 +08:00
};
2016-04-05 16:51:26 +08:00
export default Progress;