mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2025-08-01 05:00:09 +02:00

[web] Add seats feature for manually collected subscriptions improvements GitOrigin-RevId: 4fbd93097590d97ad6464d1988471a78bf7cb9e2
14 lines
491 B
TypeScript
14 lines
491 B
TypeScript
import '../base'
|
|
import { createRoot } from 'react-dom/client'
|
|
import ManuallyCollectedSubscription from '@/features/group-management/components/manually-collected-subscription'
|
|
import { SplitTestProvider } from '@/shared/context/split-test-context'
|
|
|
|
const element = document.getElementById('manually-collected-subscription-root')
|
|
if (element) {
|
|
const root = createRoot(element)
|
|
root.render(
|
|
<SplitTestProvider>
|
|
<ManuallyCollectedSubscription />
|
|
</SplitTestProvider>
|
|
)
|
|
}
|