Move entry file to components folder

This commit is contained in:
Ariful Alam
2022-03-24 23:26:36 +06:00
parent 07e1e090a1
commit b3715bca0a
3 changed files with 210 additions and 205 deletions

View File

@@ -1,13 +1,10 @@
import React from 'react';
import ReactDOM from 'react-dom';
import App from './App';
import { HelmetProvider } from 'react-helmet-async';
ReactDOM.render(
<React.StrictMode>
<HelmetProvider>
<App />
</HelmetProvider>
<App />
</React.StrictMode>,
document.getElementById('root')
);