Computer scienceFrontendReact

Overview of the basic program

Missing Code

Report a typo

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')
);
Select one option from the list
___

Create a free account to access the full topic