mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
68e61d7bb7
[web] Subscription page canceled subscription react migration GitOrigin-RevId: dd127d753e72c194cd6bbb90b1ca1557742896d9
14 lines
273 B
TypeScript
14 lines
273 B
TypeScript
import useWaitForI18n from '../../../../shared/hooks/use-wait-for-i18n'
|
|
import CanceledSubscription from './canceled'
|
|
|
|
function Root() {
|
|
const { isReady } = useWaitForI18n()
|
|
|
|
if (!isReady) {
|
|
return null
|
|
}
|
|
|
|
return <CanceledSubscription />
|
|
}
|
|
|
|
export default Root
|