import { View, Text } from 'react-native'; import React from 'react'; import HomePage from '../../../../component/homePage/homePage'; const index = () => { return ( <View className="flex-1"> <HomePage /> </View> ); }; export default index;