<div id="app"></div>
const app = document.querySelector('#app');
const root = ReactDOM.createRoot(app);

const customStyle = {
  backgroundColor: 'black',
  color: 'white',
  marginTop: 20,
  fontSize: 72,
};

const example = <h1 style={ customStyle }>Hello React</h1>;
root.render(example);
View Compiled

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

  1. https://unpkg.com/react@18/umd/react.development.js
  2. https://unpkg.com/react-dom@18/umd/react-dom.development.js