File size: 436 Bytes
0e2d59b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import './init'
import './index.css'

import React from 'react'
import ReactDOM from 'react-dom/client'
import NiceModal from '@ebay/nice-modal-react'

import App from './App'

export function Main() {
    ReactDOM.createRoot(document.getElementById('root') as HTMLElement).render(
        <React.StrictMode>
            <NiceModal.Provider>
                <App />
            </NiceModal.Provider>
        </React.StrictMode>
    )
}