Начал изучать реакт, код index.js:
import React from 'react'
import {render} from 'react-dom'
import App from './components/App'
function jo () {
return(
<div>
<h1>jojojojo</h1>
</div>
)
}
render(<jo />, document.getElementById('root'))
Код index.html
<!doctype html>
<html lang="en">
<head>
<title>React App</title>
<script src="https://unpkg.com/react@15/dist/react.js"></script>
<script src="https://unpkg.com/react-dom@15/dist/react-dom.js"></script>
<script type="text/babel" src="../src/index.js"></script>
</head>
<body>
<div id="root"></div>
</body>
</html>
Babel установил. Если что, запускаю не на сервере. Возможно в этом проблема, но говорят и без него работает