export const decodeHtml = (html: any) => {
  if (typeof window === "undefined") return html;

  const txt = document.createElement("textarea");
  txt.innerHTML = html;
  return txt.value;
};
