2021-12-29 11:56:19 +05:30
|
|
|
import React from 'react';
|
|
|
|
import ReactDOM from 'react-dom';
|
|
|
|
import App from './App';
|
|
|
|
|
2022-05-14 20:20:21 +05:30
|
|
|
ReactDOM.render(
|
|
|
|
<div>
|
|
|
|
<App />
|
|
|
|
</div>,
|
2022-10-02 22:36:57 +05:30
|
|
|
document.getElementById('root'),
|
2022-05-14 20:20:21 +05:30
|
|
|
);
|