UNPKG

@dark-engine/core

Version:

The lightweight and powerful UI rendering engine without dependencies and written in TypeScript (Browser, Node.js, Android, iOS, Windows, Linux, macOS)

9 lines (8 loc) 223 B
import { component } from '../component'; import { memo } from '../memo'; const Guard = memo( component(({ slot }) => slot, { displayName: 'Guard' }), () => false, ); export { Guard }; //# sourceMappingURL=guard.js.map