import * as React from "react"; interface IProps { heading: string; subHeading: string; viewAllButton: React.ReactElement; bgImage1: string; bgImage2: string; } export class Category extends React.Component { public render(): JSX.Element { return (

{this.props.heading}

{this.props.subHeading}

{this.props.children}
{this.props.viewAllButton}
); } }