import { IGenericLocation } from "../../../../generic/types";
import { IRWCAnswerComponent } from "../../../types";

export const transformGeoLocation = (msg: IRWCAnswerComponent): IGenericLocation => {
  const result: IGenericLocation = {
    type: 'location',
    props: {
      label: msg.vBind?.buttonLabel
    }
  };

  return result;
};
