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

export const transformText = (msg: INiceCxoneMessageContent): IGenericText => ({
    type: 'text',
    props: {
      value: msg?.payload?.text || msg.fallbackText || ""
    }
});