import React from "react"; import { RatingType } from "./CreateSurveyFormPage"; type Props = { element: RatingType; QuestionListChange: (e: React.ChangeEvent) => void; // deleteValue: (e: React.MouseEvent) => void; }; export const QRating = ({ element, QuestionListChange }: Props) => { return (
{element.content.rateValues.map((e) => ( ))}
); };