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

{/* tslint:disable-next-line */}

{this.props.viewButton}

); } }