次のコードは、.html(index.html)の保存形式です。ReactDOM.renderのHTMLのコード行はどこに置かれますか?
私は今すぐReactを学習しています。このhtmlファイルをブラウザで実行すると、何も起こりません。
私は、2行のコードがどこに行くのか、どのように呼び出すのか(レンダリングを実行するのに不思議です)。
Macを使用している場合、どこに./libのファイルがありますか?
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Introduction | Learning React</title>
<link rel="stylesheet" href="lib/style.css" />
</head>
<body>
<section id="entry-point"></section>
<!-- Wifi might be spotty, so we've downloaded these to `./lib` -->
<script src="lib/react.js"></script>
<script src="lib/react-dom.js"></script>
<script type="text/javascript">
// Intentionally blank. Your walk-through code will go here
var hello = React.createElement('p', null, 'Hello, World!');
// Checkout what this does by opening your HTML file in the browser
ReactDOM.render(hello, document.getElementById('entry-point'));
</script>
</body>
</html>
ありがとうございます!私はそれが私が行方不明の図書館であったことを今理解している – Shrooms