mirror of
https://github.com/overleaf/overleaf.git
synced 2024-12-12 09:32:30 -05:00
9 lines
288 B
TypeScript
9 lines
288 B
TypeScript
|
import '../base'
|
||
|
import ReactDOM from 'react-dom'
|
||
|
import RequestConfirmation from '@/features/group-management/components/request-confirmation'
|
||
|
|
||
|
const element = document.getElementById('subscription-manage-group-root')
|
||
|
if (element) {
|
||
|
ReactDOM.render(<RequestConfirmation />, element)
|
||
|
}
|