0

非常简单的你好词

import React from 'react';
import ReactDOM from 'react-dom';

ReactDOM.render(
    <h1>Bonjour, monde !</h1>,
    document.getElementById('root')
);

有效的案例

- 建造
- 节点模块
- scr
  |_index-plop.js

Webpack.config.js

条目:{index: path.join(__dirname, "src", "index-plop.js")}

不工作的情况

我在浏览器中打开文件并在控制台中出现错误 ReactDOM is not defined

- 建造
- 节点模块
- scr
  |_tmp
      |_index-plop.js
条目:{index: path.join(__dirname, "src/tmp", "index-plop.js")}
4

0 回答 0