import React from "react"; import { RatingType } from "../types"; type Props = { element: RatingType; }; export const ARatingForm = ({ element }: Props) => { return (
{element.content.choices.map((choice) => (
))}
); };