ashwinR's picture
Upload 75 files
f332108
raw
history blame contribute delete
184 Bytes
import React from 'react';
import ReactDOM from 'react-dom/client';
import App from './App';
const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(<App />);