more fixes

This commit is contained in:
2026-03-12 07:22:38 +01:00
parent 547215cbe8
commit 4f576ceb04
226 changed files with 14380 additions and 4453 deletions

View File

@@ -0,0 +1,16 @@
import '../bootstrap'
import React from 'react'
import { createRoot } from 'react-dom/client'
import DashboardPage from './DashboardPage'
const rootElement = document.getElementById('dashboard-root')
if (rootElement) {
const root = createRoot(rootElement)
root.render(
<DashboardPage
username={rootElement.dataset.username || 'Creator'}
isCreator={rootElement.dataset.isCreator === '1'}
/>
)
}