2022-02-18 14:49:51 +00:00
|
|
|
import * as React from 'react';
|
2022-04-08 00:31:24 +00:00
|
|
|
import { createRoot } from 'react-dom/client';
|
2022-02-20 21:55:55 +00:00
|
|
|
import App from './components/App';
|
2022-02-18 14:49:51 +00:00
|
|
|
|
2022-04-08 00:31:24 +00:00
|
|
|
const root = createRoot(document.querySelector('#root'));
|
|
|
|
root.render(<App />);
|