qr_code / src /main.jsx
Znfeoqm's picture
Update src/main.jsx
eb7b734 verified
raw
history blame contribute delete
272 Bytes
import React from 'react';
import ReactDOM from 'react-dom/client';
import App from './App.jsx';
import './index.css'; // Import the external CSS file
ReactDOM.createRoot(document.getElementById('root')).render(
<React.StrictMode>
<App />
</React.StrictMode>,
);