import React from 'react'; import { Text, View } from 'react-native'; const CategoryItem = (props) => { const { categoryTextStyle } = styles; return ( {props.categoryName} ); }; const containerStyle = function (containerBackgroudColor) { return { backgroundColor: containerBackgroudColor, justifyContent: 'center', alignItems: 'center' }; }; const styles = { categoryTextStyle: { fontSize: 20, color: '#fff' } }; export default CategoryItem;