2022-05-23 19:07:42 +00:00
|
|
|
import React from 'react';
|
|
|
|
import ReactDOM from 'react-dom/client';
|
2022-12-03 21:37:21 +00:00
|
|
|
import './index.css';
|
|
|
|
import App from './App';
|
2022-05-23 19:07:42 +00:00
|
|
|
|
|
|
|
const root = ReactDOM.createRoot(
|
2022-12-03 21:37:21 +00:00
|
|
|
document.getElementById('root') as HTMLElement
|
2022-05-23 19:07:42 +00:00
|
|
|
);
|
|
|
|
root.render(
|
2022-12-03 21:37:21 +00:00
|
|
|
<React.StrictMode>
|
|
|
|
<App />
|
|
|
|
</React.StrictMode>
|
|
|
|
);
|