mirror of
https://github.com/overleaf/overleaf.git
synced 2024-12-02 16:03:15 -05:00
10 lines
238 B
TypeScript
10 lines
238 B
TypeScript
|
import './base'
|
||
|
import ReactDOM from 'react-dom'
|
||
|
import InviteRoot from '@/features/subscription/components/invite-root'
|
||
|
|
||
|
const element = document.getElementById('invite-root')
|
||
|
|
||
|
if (element) {
|
||
|
ReactDOM.render(<InviteRoot />, element)
|
||
|
}
|