Add web app index.js

This commit is contained in:
blackboxprogramming
2025-08-08 13:40:44 -07:00
committed by GitHub
parent a8efee22b3
commit 7e3513b5d2

View File

@@ -0,0 +1,11 @@
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(
<React.StrictMode>
<App />
</React.StrictMode>
);