import React from "react"; import { View, ViewStyle, Platform } from "react-native"; const Card: React.FC<{ children?: any; style?: ViewStyle; noPadding?: boolean; }> = props => { const { children = null, style = {}, noPadding = false } = props; return ( {children} ); }; export default Card;