mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2025-07-29 05:00:06 +02:00
9 lines
312 B
TypeScript
9 lines
312 B
TypeScript
import './base'
|
|
import { createRoot } from 'react-dom/client'
|
|
import GroupInvitesRoot from '@/features/subscription/components/group-invites/group-invites-root'
|
|
|
|
const element = document.getElementById('group-invites-root')
|
|
if (element) {
|
|
const root = createRoot(element)
|
|
root.render(<GroupInvitesRoot />)
|
|
}
|