mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2025-07-29 05:00:06 +02:00
9 lines
297 B
JavaScript
9 lines
297 B
JavaScript
import './base'
|
|
import { createRoot } from 'react-dom/client'
|
|
import Root from '../../../features/subscription/components/canceled-subscription/root'
|
|
|
|
const element = document.getElementById('subscription-canceled-root')
|
|
if (element) {
|
|
const root = createRoot(element)
|
|
root.render(<Root />)
|
|
}
|