@proca/widget
Version:
Proca is an open-source campaign toolkit designed to empower activists and organisations in their digital advocacy efforts. It provides a flexible and customisable platform for creating and managing online petitions, email campaigns, and other forms of di
17 lines (13 loc) • 335 B
JavaScript
// obsolete
import { useEffect } from "react";
const Component = props => {
useEffect(() => {
if (typeof window[props.loader] === "function") {
setTimeout(window[props.loader], 1);
} else {
console.log("missing function ", props.loader);
}
}, [props.loader]);
return null;
};
export default Component;