mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-23 10:18:40 +00:00
8 lines
227 B
JavaScript
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 />)
|