Testimonial Card
The Testimonial Card
component comes with an interactive star rating, a descriptive review along with the author’s details.
UI Preview




Usage
To use the TestimonialCard
component, import it and provide it with the necessary testimonialCardData
. Here is a basic example:
import React from "react";import { TestimonialCard } from "@app-launch-kit/components/custom/testimonials/TestimonialCard";import testimonialCardData from "@app-launch-kit/utils/constants/testimonialCard";
export const TestimonialCardBasic = () => { return <TestimonialCard {...testimonialCardData} />;};