Vijayadhith7's picture
build a fullstack website browser with all integrations and api's
dda1e85 verified
raw
history blame contribute delete
204 Bytes
import React from 'react';
import ReactDOM from 'react-dom/client';
import App from './App';
import './index.css';
const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(<App />);