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