‘reactdom‘ is not defined.mountnode is not defined 解决办法

When using ant-designthe components, you will encounter two errors. Here are the solutions I found.

‘reactdom’ is not defined.`

1. Introduce in the head

import ReactDOM from 'react-dom';

mountnode is not defined

2. Replace the wording

const EditableFormTable = Form.create()(EditableTable);
// ReactDOM.render(<EditableFormTable />, mountNode);

export default EditableFormTable;

Guess you like

Origin blog.csdn.net/weixin_45416217/article/details/109175392