import React from 'react'; import PropTypes from 'prop-types'; import { View, TouchableOpacity, Text } from 'react-native'; import styles from './styles'; export default class TabBar extends React.PureComponent { static propTypes = { goToPage: PropTypes.func, activeTab: PropTypes.number, tabs: PropTypes.array, tabEmojiStyle: PropTypes.object } render() { const { tabs, goToPage, tabEmojiStyle, activeTab } = this.props; return ( {tabs.map((tab, i) => ( goToPage(i)} style={styles.tab} testID={`reaction-picker-${ tab }`} > {tab} {activeTab === i ? : } ))} ); } }