<div id="app"></div>
const app = document.querySelector('#app');
const root = ReactDOM.createRoot(app);
const customStyle = {
backgroundColor: 'black',
color: 'white'
};
const example = <h1 style={ customStyle }>Hello React</h1>;
root.render(example);
View Compiled
This Pen doesn't use any external CSS resources.