// Copyright 2017-2026 @pezkuwi/test-support authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { PropsWithChildren } from 'react'; import type React from 'react'; import { useApi } from '@pezkuwi/react-hooks'; // eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/no-redundant-type-constituents export const WaitForApi = ({ children }: { children: React.ReactNode }): PropsWithChildren | null => { const api = useApi(); return api.isApiReady ? (children) : null; };