import './bootstrap' import React from 'react' import { createRoot } from 'react-dom/client' import { createInertiaApp } from '@inertiajs/react' import UploadPage from './Pages/Upload/Index' const pages = { 'Upload/Index': UploadPage, } createInertiaApp({ resolve: (name) => pages[name], setup({ el, App, props }) { const root = createRoot(el) root.render() }, })