[70ba26]: / frontend / src / index.js

Download this file

11 lines (8 with data), 264 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
import React from 'react';
import { createRoot } from 'react-dom';
import './index.css';
import App from './App';
import reportWebVitals from './reportWebVitals';
const root = createRoot(document.getElementById('root'));
root.render(<App />);
reportWebVitals();