import { mountInertiaRoot } from './bootstrap' import React from 'react' 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 }) { mountInertiaRoot(el, App, props) }, })