2023-12-18 21:15:55 +00:00
|
|
|
import React from 'react';
|
|
|
|
import { createRoot } from 'react-dom/client';
|
|
|
|
import './style.css';
|
|
|
|
import App from './App';
|
2023-12-13 21:07:40 +00:00
|
|
|
|
2023-12-18 21:15:55 +00:00
|
|
|
const container = document.getElementById('root');
|
2023-12-13 21:07:40 +00:00
|
|
|
|
2023-12-18 21:15:55 +00:00
|
|
|
const root = createRoot(container);
|
2023-12-13 21:07:40 +00:00
|
|
|
|
|
|
|
root.render(
|
2023-12-18 21:15:55 +00:00
|
|
|
// <React.StrictMode>
|
|
|
|
<App />
|
|
|
|
// </React.StrictMode>
|
|
|
|
);
|