UNPKG

activator-oce-exporter

Version:

Extract Activator binder and convert it to valid OCE mono pacakge

15 lines (12 loc) 239 B
import { delay } from '../utils'; /** * Performs lazy render */ export function LazyComponent(superClass) { return class extends superClass { async performUpdate() { await delay(); super.performUpdate(); } }; }