@devcycle/react-client-sdk
Version:
The DevCycle React SDK used for feature management.
12 lines (11 loc) • 380 B
TypeScript
import React from 'react';
import { ProviderConfig } from './types';
type Props = {
children?: React.ReactNode;
};
/**
* @deprecated Use the `useIsDevCycleInitialized` hook to block rendering of your application
* until SDK initialization is complete
*/
export default function asyncWithDVCProvider(config: ProviderConfig): Promise<React.FC<Props>>;
export {};