2022-08-08 04:31:37 -05:00
|
|
|
import { createRoot } from 'react-dom/client';
|
2022-05-29 08:11:58 -05:00
|
|
|
|
|
|
|
import App from './App';
|
|
|
|
|
|
|
|
const app = document.querySelector('#app');
|
2022-08-08 04:31:37 -05:00
|
|
|
const root = app && createRoot(app);
|
|
|
|
root?.render(<App />);
|