My vscode is warning on super(props)
,
Anyone has ideas why?
class TableSizeInput extends React.Component {
constructor(props) {
super(props);
this.state = {
default_columns: this.props.default_columns,
default_rows: this.props.default_rows
};
};
Thanks in advance!