uppy/e2e/clients/react/index.jsx
2023-11-12 02:03:55 +01:00

8 lines
227 B
JavaScript

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