mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-18 00:55:35 +00:00
6 lines
181 B
TypeScript
6 lines
181 B
TypeScript
/* eslint-disable */
|
|
import React from 'react'
|
|
import { createRoot } from 'react-dom/client'
|
|
import App from './App.tsx'
|
|
|
|
createRoot(document.querySelector('#app')).render(<App />)
|