SimpliFi / frontend /src /index.js
Rsr2425's picture
Got basics of FE/BE running. BE passes tests
58973c7
raw
history blame contribute delete
237 Bytes
import React from 'react';
import ReactDOM from 'react-dom/client';
import App from './App';
const root = ReactDOM.createRoot(
document.getElementById('root')
);
root.render(
<React.StrictMode>
<App />
</React.StrictMode>
);