Guilherme Silberfarb Costa
Initial commit for HF Space
d6c9678
raw
history blame contribute delete
228 Bytes
import React from 'react'
import { createRoot } from 'react-dom/client'
import App from './App'
import './styles.css'
createRoot(document.getElementById('root')).render(
<React.StrictMode>
<App />
</React.StrictMode>
)