import * as React from 'react'; import { View, Text } from 'react-native'; interface Cardprops { text: string; } const defaultProps = { text: 'I am Native Card' }; const CardNative: React.FunctionComponent = (props) => ( {props.text} ); CardNative.defaultProps = defaultProps; export default CardNative;