mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2025-07-31 02:00:07 +02:00

[web] Add seats feature for manually collected subscriptions GitOrigin-RevId: f7cc6f8ce17163f10e175a06bb471de6e3a96e3c
19 lines
430 B
TypeScript
19 lines
430 B
TypeScript
import useWaitForI18n from '../../../../shared/hooks/use-wait-for-i18n'
|
|
import AddSeats from '@/features/group-management/components/add-seats/add-seats'
|
|
import { SplitTestProvider } from '@/shared/context/split-test-context'
|
|
|
|
function Root() {
|
|
const { isReady } = useWaitForI18n()
|
|
|
|
if (!isReady) {
|
|
return null
|
|
}
|
|
|
|
return (
|
|
<SplitTestProvider>
|
|
<AddSeats />
|
|
</SplitTestProvider>
|
|
)
|
|
}
|
|
|
|
export default Root
|