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

{this.props.heading}

{this.props.subHeading}

{this.props.children}
); } }