import { IZendeskContent } from "../../types";
import { IGenericText } from "../../../generic/types";

export const transformText = ({ text }: IZendeskContent): IGenericText => ({
    type: "text",
    props: {
      value: text,
    }
});
