import React, { useState, useEffect, useCallback } from "react"; import { TestimonialType } from "../services/types"; const TestimonialCard: React.FC<{ item: TestimonialType }> = ({ item }) => (
{item.name}

{item.name}

{item.location}

{[...Array(item.rating)].map((_, i) => ( ))}

"{item.content}"

); export default TestimonialCard;