mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
7e68b4f0d5
[web] React subscription split test GitOrigin-RevId: 6656b3895030bc677483a3e30d5e998f5f7d1458
8 lines
239 B
JavaScript
8 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)
|
|
}
|