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

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