React.js Komut satırını kullanmadıysanız Webpack için kurulum hazırlığı.
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>ReactJS Material</title>
</head>
<body>
<div id="app"></div> //app id'si ana
<script src="/app/bundle.js"></script>
</body>
</html>
import React, { Component } from 'react';
import ReactDOM from 'react-dom';
class App extends Component {
render() {
return (
<div>
<h1>Merhaba Dunya !!</h1>
</div>
);
}
}
ReactDOM.render(
< App />,
document.getElementById('app')
);