Deploy Bot
Deploy SciANN Material Identification app (Django + React + Vite)
7ba882a
raw
history blame contribute delete
224 Bytes
import React from 'react'
import { createRoot } from 'react-dom/client'
import App from './App'
import './App.css'
createRoot(document.getElementById('root')).render(
<React.StrictMode>
<App />
</React.StrictMode>
)