<div id="app"></div>
const app = document.querySelector('#app');
const root = ReactDOM.createRoot(app);
const example = <h1> Hello { true ? 'Ray' : 'Tom' } </h1>;
root.render(example);
View Compiled
This Pen doesn't use any external CSS resources.