Files
dev-connect/client/src/index.js
T
2023-06-06 22:28:48 +03:00

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/>)