import React from 'react'; interface QuoteProps { quote: string; author: string; description: string; } /** * @return {jsx} The root component */ export default function Quote( {quote, author, description}: QuoteProps) { const containerStyle = { backgroundColor: '#f7f7f7', }; return (

{quote}

{author}
{description}
); }