ElementType

View Source

Summary

Any valid element type accepted by JSX or import('./create-element.ts').createElement.

  • string for host elements (e.g., 'div')
  • Function for user components

Signature

type ElementType = string | Function;