import styled from 'styled-components'; import colors from 'styles/colors'; import Card from 'components/Form/Card'; import Heading from 'components/Form/Heading'; const Outer = styled(Card)` overflow: auto; max-height: 20rem; `; const ScreenshotCard = (props: { screenshot: string }): JSX.Element => { return ( Screenshot Full page screenshot ); } export default ScreenshotCard;