import * as React from "react"; interface IProps { title: string; details: string; subtitle: string; viewButton: React.ReactElement; image: string; } export class Product extends React.Component { public render(): JSX.Element { return (
{/* tslint:disable-next-line */} `}} />

{this.props.title}

{this.props.subtitle}

{this.props.viewButton}
); } }