@appbuckets/react-ui-smart-components
Version:
UI Extended Components that work with @appbuckets/react-client and @appbuckets/react-ui
9 lines (8 loc) • 414 B
TypeScript
import * as React from 'react';
import type { UseSmartComponentsResult } from './SmartComponentsProvider.types';
/** Create the Hook */
declare const useSmartComponents: () => UseSmartComponentsResult | undefined;
/** Export a Context Provider Shorthand */
declare const SmartComponentsProvider: React.FunctionComponent<UseSmartComponentsResult>;
export { SmartComponentsProvider };
export { useSmartComponents };