mirror of
https://github.com/overleaf/overleaf.git
synced 2024-12-12 14:51:58 -05:00
9 lines
309 B
TypeScript
9 lines
309 B
TypeScript
|
import '@/marketing'
|
||
|
import ReactDOM from 'react-dom'
|
||
|
import PreviewSubscriptionChange from '@/features/subscription/components/preview-subscription-change/root'
|
||
|
|
||
|
const element = document.getElementById('subscription-preview-change')
|
||
|
if (element) {
|
||
|
ReactDOM.render(<PreviewSubscriptionChange />, element)
|
||
|
}
|