toto10's picture
Upload folder using huggingface_hub (#4)
ea35075
raw
history blame
436 Bytes
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>
)
}