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