Skip to content

Instantly share code, notes, and snippets.

@anonymoustafa
Created May 6, 2022 17:44
Show Gist options
  • Save anonymoustafa/31a7d57438b1467328017c5f91c068d7 to your computer and use it in GitHub Desktop.
Save anonymoustafa/31a7d57438b1467328017c5f91c068d7 to your computer and use it in GitHub Desktop.
simplest-react-index.js files ever
import React from 'react';
import ReactDOM from 'react-dom/client';
const root = ReactDOM.createRoot(document.getElementById("root"));
const element = <h1> Hello, world </h1>;
root.render(element);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment