Skip to content
Snippets Groups Projects
Commit 499133ac authored by Asgher Merchant's avatar Asgher Merchant
Browse files

Delete index.js

parent 8d4986ed
Branches
No related merge requests found
import React from 'react';
import ReactDOM from 'react-dom/client';
import './index.css';
import App from './App';
import reportWebVitals from './reportWebVitals';
// Create a root React element and assign it to the root constant
const root = ReactDOM.createRoot(document.getElementById('root'));
// Render the App component inside a React.StrictMode component
root.render(
<React.StrictMode>
<App />
</React.StrictMode>
);
// Report Web Vitals metrics to an analytics service
reportWebVitals();
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment