10 lines
241 B
JavaScript
10 lines
241 B
JavaScript
import React from 'react';
|
|
import {createRoot} from 'react-dom/client'
|
|
import App from './App';
|
|
|
|
// Level - 0
|
|
//Program stars from Here. Imports and renders App.
|
|
|
|
const root = createRoot(document.getElementById('root'));
|
|
root.render(<App/>)
|