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

{this.props.name}

); } }