@gaddario98/react-native-core
Version:
```bash npm install @gaddario98/native ```
19 lines (16 loc) • 515 B
TypeScript
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 };