Nick was trying to write his first piece of React code. He started with a very simple program as a test but still ended up forgetting something. Can you help Nick find what's missing from his code?
import React from 'react';
ReactDOM.render(
<div>
<h1>JetBrains Academy</h1>
<p>Learn to program by creating working applications</p>
</div>,
document.getElementById('root')
);