test / client /src /main.jsx
akborana4's picture
Update client/src/main.jsx
5774510 verified
raw
history blame contribute delete
188 Bytes
import React from 'react';
import { createRoot } from 'react-dom/client';
import App from './App.jsx';
import './styles.css';
createRoot(document.getElementById('root')).render(<App />);