import YogaImageComponent from "@/components/yoga.image.component"; import {YogaCustomerFeedback_Plain} from "@/types/generated-strapi-interfaces/api/yoga-customer-feedback"; import {StrapiFile} from "@/types/types"; import strapiApi from "@/api/strapi/strapi-api"; import clsx from "clsx"; export interface Props { config: YogaCustomerFeedback_Plain, active: boolean } const FeedbackComponent = ({active,config: {customerName, feedback, customerImage, customerDescription}}: Props) => { const imageFile: StrapiFile = customerImage as StrapiFile; return (

“{feedback}”

{customerName}

{customerDescription}
); } export default FeedbackComponent;