Skip to content

Instantly share code, notes, and snippets.

@techiediaries
Last active June 21, 2022 01:42
Show Gist options
  • Save techiediaries/77283d73c9f7c495e280e4e35b77c7b4 to your computer and use it in GitHub Desktop.
Save techiediaries/77283d73c9f7c495e280e4e35b77c7b4 to your computer and use it in GitHub Desktop.
React 18 createRoot example
import React from 'react';
import { createRoot }  from 'react-dom/client';

const App = ()=> <h1>React 18</h1>

const root = createRoot( document.getElementById("root") );
root.render( <App /> );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment