20 lines
520 B
JavaScript
20 lines
520 B
JavaScript
import './bootstrap'
|
|
import React from 'react'
|
|
import { createRoot } from 'react-dom/client'
|
|
import { createInertiaApp } from '@inertiajs/react'
|
|
import ProfileShow from './Pages/Profile/ProfileShow'
|
|
import ProfileGallery from './Pages/Profile/ProfileGallery'
|
|
|
|
const pages = {
|
|
'Profile/ProfileShow': ProfileShow,
|
|
'Profile/ProfileGallery': ProfileGallery,
|
|
}
|
|
|
|
createInertiaApp({
|
|
resolve: (name) => pages[name],
|
|
setup({ el, App, props }) {
|
|
const root = createRoot(el)
|
|
root.render(<App {...props} />)
|
|
},
|
|
})
|