rallly/utils/selectors.ts
2022-04-12 07:14:28 +01:00

7 lines
171 B
TypeScript

export const getPortal = () => {
const el = document.getElementById("portal");
if (el === null) {
throw new Error("Portal element not found");
}
return el;
};