import React from 'react'; import classNames from 'classnames'; type Props = { id: number; color: string; title_one: string; title_two: string; img: string; sale: string; }; export const CardStock: React.FC = ({color, title_one, title_two, img, sale}) => { return(

{title_one}

{title_two}

{sale}

) }