mirror of
https://github.com/pezkuwichain/pwap.git
synced 2026-07-14 03:55:48 +00:00
1295c36241
- Fixed TypeScript type assertion issues - Updated imports from api-augment/substrate to api-augment/bizinikiwi - Fixed imgConvert.mjs header and imports - Added @ts-expect-error for runtime-converted types - Fixed all @polkadot copyright headers to @pezkuwi
15 lines
532 B
TypeScript
15 lines
532 B
TypeScript
// Copyright 2017-2025 @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<any> | null => {
|
|
const api = useApi();
|
|
|
|
return api.isApiReady ? (children) : null;
|
|
};
|