UNPKG

@gaddario98/react-native-core

Version:
19 lines (16 loc) 515 B
import { PropsWithChildren } from 'react'; export { AppProviders as BaseAppProvider, queryClient } from '@gaddario98/react-core/providers'; interface AppProvidersProps extends PropsWithChildren { theme?: { background?: string; primary?: string; text?: string; card?: string; border?: string; notification?: string; }; dark?: boolean; } declare const AppProviders: React.FC<AppProvidersProps>; export { AppProviders }; export type { AppProvidersProps };