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