import React, { FC } from 'react'; import { Card, Avatar, Text } from '@chakra-ui/react'; type ReviewCardProps = { firstname: string; lastname: string; picture: string; text: string; }; export const ReviewCard: FC = ({ firstname, lastname, picture, text, }) => { const name = [firstname, lastname].join(' '); return ( {text} ); };