PopcornPing / frontend /src /index.js
Yash Goyal
Correction
2070fe3
raw
history blame contribute delete
253 Bytes
import React from 'react';
import ReactDOM from 'react-dom/client';
import './index.css';
import App from './App';
const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(
<React.StrictMode>
<App />
</React.StrictMode>
);