import * as React from "react"; import { View, ViewProps } from "react-native"; interface Props extends ViewProps { children: any; } function Card(props: Props) { return ( ); } export default Card;