import React from 'react'; import './styles.scss'; function TestimonialCard({ comment }) { return (

{comment.text}

{comment.author_logo && ( {comment.author_logo_alt} )}

{comment.author}

{comment.author_title}

); } export default TestimonialCard;