import React, { render } from 'react'; import ReactDOM from 'react-dom'; function Hello() { return <h1>Hello, world!</h1>; } render(<Hello />)