Component
Type. Callable functional component shape.
Table of contents
Category
Type
Type import
tsimport type { Component } from "valyrian.js";Public signature
tsinterface Component extends Record<string | number | symbol, any> { (props: Properties, children: any[]): Vnode | any; }Type usage
Component describes a callable component that receives vnode properties and children.