import React from 'react'; import { Image, SafeAreaView, ScrollView, TouchableOpacity, View, } from 'react-native'; import styles from '../style'; import WishListComponent from '../components/WishListComponent'; import BirthdayModal from '../modals/BirthdayModals'; import CalendarBirthday from './subViews/CalendarBirthday'; import Quotation from './subViews/QuotationList'; import {Button} from 'react-native-paper'; import {IMAGES} from '../../../assets/images'; import ImCheckInInstall from '../components/ImCheckInInstall'; import ImCheckInModule from 'ImCheckInModule'; const HomeMainView = ({ userInfo, openView, openModalHappyBirthday, closeModalHappyBirthday, wishList, openProfileComponent, openCheckIn, calendarBirthdayProps, randomQuotation, birthdayModalProps, imCheckInInstall, toggleImCheckInModal, }) => { return ( {!openCheckIn && ( {/*Calendar*/} {/*wish */} {wishList.length > 0 && ( )} )} {openProfileComponent && openProfileComponent} // // // ); }; export default HomeMainView;