I need to to show a braze inAppMessage HTML pop up in my React JS application. here is my code base
export const displayCustomInAppHTMLMessage = msgTxt => {
const message = new appboy.HtmlMessage(msgTxt);
appboy.display.showInAppMessage(message);
};
But this does not show any pop up. Can someone please help? Thanks