mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
9 lines
263 B
JavaScript
9 lines
263 B
JavaScript
|
import './base'
|
||
|
import ReactDOM from 'react-dom'
|
||
|
import Root from '../../../features/subscription/components/successful-subscription/root'
|
||
|
|
||
|
const element = document.getElementById('subscription-success-root')
|
||
|
if (element) {
|
||
|
ReactDOM.render(<Root />, element)
|
||
|
}
|