import React from "react"; import styles from "./productionCollection.module.css"; import { Row, Col, Divider } from "antd"; import { ProductImage } from "./productImage"; interface PropsType { title: JSX.Element; sideImage: string; products: any[]; } export const ProductCollection: React.FC = ({ title, sideImage, products, }) => { return (
{title}
); };