import PropTypes from 'prop-types' import React from 'react' import Image from 'next/image' import { Row, Col } from 'reactstrap' import ContentSection from './ContentSection' import { screenshot } from './ScreenshotSection.module.scss' const ScreenshotSection = ({ className, name, title, imageUrl, caption, imageIsRight, children }) => ( {children} {caption}
{caption}
) ScreenshotSection.propTypes = { className: PropTypes.string, name: PropTypes.string, title: PropTypes.string, imageUrl: PropTypes.string, caption: PropTypes.string, imageIsRight: PropTypes.bool, children: PropTypes.node, } export default ScreenshotSection