import React from 'react'; import {View, Text} from 'react-native'; import HeaderBack from '../../components/Header/HeaderBack'; const ServiceCustomerView = (props) => { return ( <View style={{flex: 1}}> <HeaderBack title={'Liên hệ vơi chúng tôi'} /> <View style={{ flex: 1, paddingHorizontal: 20, justifyContent: 'center', alignItems: 'center', }}> <Text style={{ fontSize: 18, fontWeight: 'bold', textAlign: 'center', }}> Tính năng đang được phát triển, vui lòng quay lại sau! </Text> </View> </View> ); }; export default ServiceCustomerView;