/** * dashboard-page-react-free.tsx * * FREE edition entry point. * Mounts into #pdfib-dashboard-root. */ import React from 'react'; import { createRoot } from 'react-dom/client'; import DashboardPageFree from '../react/components/admin/DashboardPageFree'; const container = document.getElementById('pdfib-dashboard-root'); if (container) { createRoot(container).render(); }