2021-12-29 06:26:19 +00:00
|
|
|
import React from 'react';
|
|
|
|
import ReactDOM from 'react-dom';
|
|
|
|
import App from './App';
|
|
|
|
|
2022-05-14 14:50:21 +00:00
|
|
|
ReactDOM.render(
|
|
|
|
<div>
|
|
|
|
<App />
|
|
|
|
</div>,
|
2022-10-02 17:06:57 +00:00
|
|
|
document.getElementById('root'),
|
2022-05-14 14:50:21 +00:00
|
|
|
);
|