UNPKG

reka-ui

Version:

Vue port for Radix UI Primitives.

12 lines (11 loc) 277 B
/** * Checks whether a given VNode is a render-vialble element. */ export function isValidVNodeElement(input: any): boolean { return ( input && (typeof input.type === 'string' || typeof input.type === 'object' || typeof input.type === 'function') ) }