import { Card } from 'web-check-live/components/Form/Card'; const cardStyles = ` overflow: auto; max-height: 50rem; grid-row: span 2; img { border-radius: 6px; width: 100%; margin 0.5rem 0;; } `; const ScreenshotCard = (props: { data: { image?: string, data?: string, }, title: string, actionButtons: any }): JSX.Element => { const screenshot = props.data; return ( { screenshot.image && Full page screenshot } { (!screenshot.image && screenshot.data) && Full page screenshot } ); } export default ScreenshotCard;