mirror of
https://github.com/zulip/zulip-desktop.git
synced 2025-11-14 19:05:56 +00:00
10 lines
269 B
TypeScript
10 lines
269 B
TypeScript
import type {HTML} from "../../../common/html";
|
|
|
|
export default class BaseComponent {
|
|
generateNodeFromHTML(html: HTML): Element | null {
|
|
const wrapper = document.createElement("div");
|
|
wrapper.innerHTML = html.html;
|
|
return wrapper.firstElementChild;
|
|
}
|
|
}
|