dashboard.tsx 286 B

123456789
  1. import './base'
  2. import { createRoot } from 'react-dom/client'
  3. import Root from '../../../features/subscription/components/dashboard/root'
  4. const element = document.getElementById('subscription-dashboard-root')
  5. if (element) {
  6. const root = createRoot(element)
  7. root.render(<Root />)
  8. }