2022-06-06 19:22:05 +03:00
|
|
|
import { createRoot } from 'react-dom/client';
|
2018-12-21 22:18:05 +03:00
|
|
|
import React from 'react';
|
|
|
|
import App from './App';
|
|
|
|
|
2022-06-06 19:22:05 +03:00
|
|
|
const root = createRoot(document.getElementById('root')!);
|
|
|
|
root.render(<App />);
|