mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
7e68b4f0d5
[web] React subscription split test GitOrigin-RevId: 6656b3895030bc677483a3e30d5e998f5f7d1458
13 lines
234 B
TypeScript
13 lines
234 B
TypeScript
import useWaitForI18n from '../../../../shared/hooks/use-wait-for-i18n'
|
|
|
|
function Root() {
|
|
const { isReady } = useWaitForI18n()
|
|
|
|
if (!isReady) {
|
|
return null
|
|
}
|
|
|
|
return <h2>React Subscription New</h2>
|
|
}
|
|
|
|
export default Root
|