import React from 'react'; import { TouchableComponent } from '../TouchableComponent'; type Props = React.ComponentProps; export const CardContainer = ({ children, onPress, disabled, ...props }: Props) => { return ( { if (onPress) { onPress(event); } }} {...props} > {children} ); };