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.

16 lines
327 B

9 years ago
import { PropTypes } from 'react';
import * as React from 'react';
9 years ago
import RcRate from 'rc-rate';
export default class Rate extends React.Component {
9 years ago
static propTypes = {
prefixCls: PropTypes.string,
};
static defaultProps = {
9 years ago
prefixCls: 'ant-rate',
};
render() {
return <RcRate {...this.props} />;
}
}