mirror of
https://github.com/blackboxprogramming/BlackStream.git
synced 2026-03-18 04:34:10 -05:00
Add web app index.js
This commit is contained in:
committed by
GitHub
parent
a8efee22b3
commit
7e3513b5d2
11
frontend/web-app/src/index.js
Normal file
11
frontend/web-app/src/index.js
Normal 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>
|
||||||
|
);
|
||||||
Reference in New Issue
Block a user