mirror of
https://github.com/overleaf/overleaf.git
synced 2025-02-15 11:51:13 +00:00
9 lines
239 B
JavaScript
9 lines
239 B
JavaScript
|
import './base'
|
||
|
import ReactDOM from 'react-dom'
|
||
|
import Root from '../../../features/subscription/components/new/root'
|
||
|
|
||
|
const element = document.getElementById('subscription-new-root')
|
||
|
if (element) {
|
||
|
ReactDOM.render(<Root />, element)
|
||
|
}
|