bless-dev
Version:
A dynamic and customizable onboarding screen component for React Native Expo applications with multi-screen navigation and data collection
12 lines (8 loc) • 299 B
TypeScript
import { ComponentType } from 'react';
export interface OnboardingScreenProps {
configUrl?: string;
onComplete?: (data: any) => void;
}
export const OnboardingScreen: ComponentType<OnboardingScreenProps>;
declare const _default: ComponentType<OnboardingScreenProps>;
export default _default;