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