uppy/examples/react-example/main.tsx
2024-05-30 12:54:07 +02:00

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 />)