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

{this.props.heading}

{this.props.subHeading}

{this.props.emailTextbox} {this.props.submitButton}
); } }