2022-08-31 12:35:20 +00:00
|
|
|
import React from 'react';
|
2022-09-01 16:47:36 +00:00
|
|
|
import { createRoot } from 'react-dom/client';
|
2022-09-11 18:01:12 +00:00
|
|
|
import App from './App';
|
2022-09-01 16:47:36 +00:00
|
|
|
|
|
|
|
const container = document.getElementById('root');
|
|
|
|
const root = createRoot(container!);
|
2022-09-11 18:01:12 +00:00
|
|
|
root.render(
|
|
|
|
<React.StrictMode>
|
|
|
|
<App />
|
|
|
|
</React.StrictMode>
|
|
|
|
);
|
|
|
|
|
|
|
|
|