import React, { FunctionComponent } from 'react'; import { Text } from 'react-native'; import { TimeNow } from '../model/TimeNow'; interface Props extends TimeNow {} export const AnotherFancyFeatureComponent: FunctionComponent = ({ timeNow }) => { return ( <> This is another fancy feature of your app. The time now is {timeNow} ); };