我的vscode在super(props)
上发出警告,
有人知道为什么吗?
class TableSizeInput extends React.Component {
constructor(props) {
super(props);
this.state = {
default_columns: this.props.default_columns,
default_rows: this.props.default_rows
};
};
谢谢!