import React from 'react'; import { StyleSheet, Text, View } from 'react-native'; import type { ScreenBottomBarProps } from './model'; const MenuItemComponent = (props: ScreenBottomBarProps) => { const { name } = props; return ( {name} ); }; export default MenuItemComponent; const styles = StyleSheet.create({ container: { flex: 1, alignItems: 'center', justifyContent: 'center', }, });