leothesouthafrican's picture
Initial commit on web_app_temp
de234b1
raw
history blame contribute delete
256 Bytes
import React from 'react';
import ReactDOM from 'react-dom/client';
import AppRouter from './AppRouter';
import './index.css'
ReactDOM.createRoot(
document.getElementById('root')
).render(
<React.StrictMode>
<AppRouter />
</React.StrictMode>
);