mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-27 11:01:56 +02:00
[web] React subscription split test GitOrigin-RevId: 6656b3895030bc677483a3e30d5e998f5f7d1458
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)
|
|
}
|