mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
c8ef5e6f65
[web] Migrate institution memberships dash to React GitOrigin-RevId: 75bb8e7d7338418733a836a8e654fe5b0a9fceff
14 lines
289 B
TypeScript
14 lines
289 B
TypeScript
import useWaitForI18n from '../../../../shared/hooks/use-wait-for-i18n'
|
|
import SubscriptionDashboard from './subscription-dashboard'
|
|
|
|
function Root() {
|
|
const { isReady } = useWaitForI18n()
|
|
|
|
if (!isReady) {
|
|
return null
|
|
}
|
|
|
|
return <SubscriptionDashboard />
|
|
}
|
|
|
|
export default Root
|