我正在使用最新的反应并开始了一个新项目 我的代码就是这样
export default class MaterialIcon extends Component {
render() {
const { icon, ...other } = this.props;
return (
<MaterialIconDefault
icon={icon}
{...other}
/>
}
}
谁能说出什么问题