24 lines
590 B
JavaScript
24 lines
590 B
JavaScript
import './bootstrap'
|
|
import React from 'react'
|
|
import { createRoot } from 'react-dom/client'
|
|
import { createInertiaApp } from '@inertiajs/react'
|
|
|
|
const pages = {
|
|
'Moderation/ArtworkMaturityQueue': () => import('./Pages/Moderation/ArtworkMaturityQueue.jsx').then((module) => module.default),
|
|
}
|
|
|
|
createInertiaApp({
|
|
resolve: (name) => {
|
|
const page = pages[name]
|
|
|
|
if (!page) {
|
|
throw new Error(`Unknown moderation page: ./Pages/${name}.jsx`)
|
|
}
|
|
|
|
return page()
|
|
},
|
|
setup({ el, App, props }) {
|
|
const root = createRoot(el)
|
|
root.render(<App {...props} />)
|
|
},
|
|
}) |