import React from 'react'; import { View, Text } from 'react-native'; import { getStyles } from './onboardingCompleteScreen.styles'; import { PrimaryButton } from '@components'; import { useAppTheme } from '@theme'; import { completeOnboarding } from '../../../store/commonreducers/auth'; import { useAppDispatch } from '@store'; export const OnboardingCompleteScreen: React.FC = () => { const { colors } = useAppTheme(); const styles = getStyles(colors); const dispatch = useAppDispatch(); const handleExplore = () => { dispatch(completeOnboarding()); }; return ( 🎉 All Set! You're ready to explore and order from the best providers near you. ); };