UNPKG

radi

Version:

**Radi** is a tiny javascript framework.

12 lines (9 loc) 291 B
import GLOBALS from '../consts/GLOBALS'; const remountActiveComponents = () => { Object.values(GLOBALS.ACTIVE_COMPONENTS).forEach(component => { if (typeof component.onMount === 'function') { component.onMount(component); } }); }; export default remountActiveComponents;