uppy/e2e/clients/react/index.jsx

7 lines
181 B
JavaScript

import { createRoot } from 'react-dom/client'
import App from './App.jsx'
const container = document.getElementById('app')
const root = createRoot(container)
root.render(<App />)