Files
SkinbaseNova/resources/js/moderation.jsx

20 lines
502 B
JavaScript

import { mountInertiaRoot } from './bootstrap'
import React from 'react'
import { createInertiaApp } from '@inertiajs/react'
const pages = import.meta.glob('./Pages/Moderation/**/*.jsx')
createInertiaApp({
resolve: (name) => {
const page = pages[`./Pages/${name}.jsx`]
if (!page) {
throw new Error(`Unknown moderation page: ./Pages/${name}.jsx`)
}
return page().then((module) => module.default)
},
setup({ el, App, props }) {
mountInertiaRoot(el, App, props)
},
})