import React, { FunctionComponent} from 'react'; import { Text } from 'react-native'; const NBLOCKS_USER_NO_NAME = "New account"; const SafeTenantNameComponent:FunctionComponent<{tenantName: string | undefined, style?: any}> = ({tenantName, style}) => { return( {tenantName ? tenantName : NBLOCKS_USER_NO_NAME} ) } export {SafeTenantNameComponent};