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