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