I am trying to figure this out as well, super weird. Why is it not ‘big’, the actual className of our div.
import React from 'react';
import ReactDOM from 'react-dom';
// Write code here:
var myDiv = (
<div className="big">I AM A BIG DIV</div>
);
ReactDOM.render(
myDiv,
document.getElementById('app')
)
In the top-left corner of the editor, there is a folder icon. If you click on it, you will see a file index.html. Open the file and you will see which element is being targeted by ReactDOM.render