import React from "react"; import { Testimonial, TestimonialsProps } from "../../types"; import { cn } from "../../lib/utils"; import { TestimonialCard } from "./TestimonialCard"; import { motion } from "framer-motion"; interface ListLayoutProps extends Omit { testimonials: Omit[]; } export function ListLayout({ testimonials, theme = "light", className, }: ListLayoutProps) { return (
{testimonials.map((testimonial, index) => ( ))}
); }