Add src/index.js

This commit is contained in:
user-admin 2026-01-31 02:45:33 +00:00
parent 2559017ce3
commit c92a89500f
1 changed files with 11 additions and 0 deletions

11
src/index.js Normal file
View File

@ -0,0 +1,11 @@
import React from 'react';
import ReactDOM from 'react-dom/client';
import './index.css';
import App from './App';
const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(
<React.StrictMode>
<App />
</React.StrictMode>
);