import React from 'react'; import {View, Text} from 'react-native'; import {getFontXD} from '../../../Config/Functions'; import HeaderBack from '../../../components/Header/HeaderBack'; import PickerSearch from '../../../components/Picker/PickerSearch'; import AppText from '../../../components/AppText'; const BonusTeam = (props) => { return ( <View style={{flex: 1}}> <HeaderBack title={'TeamBonus'} /> <View style={{ flex: 1, paddingHorizontal: 20, justifyContent: 'center', alignItems: 'center', }}> <AppText i18nKey={'Features_develop'} style={{ fontSize: 18, fontWeight: 'bold', textAlign: 'center', }} /> {/* <PickerSearch findData={() => { console.log('Call api'); }} data={[ {value: 0, name: ''}, {value: 1, name: 'Nam 1'}, {value: 2, name: 'Nam 2'}, {value: 3, name: 'Nam 3'}, {value: 4, name: 'Nam 4'}, ]} /> */} </View> </View> ); }; export default BonusTeam;