Module JSX.Opening

type t('M, 'T) = ('M, t'('M, 'T));
and attribute('M, 'T) =
  1. | Attribute(Attribute.t('M, 'T))
  2. | SpreadAttribute(SpreadAttribute.t('M, 'T))
;
and t'('M, 'T) = {
  1. name: name('M, 'T),
  2. self_closing: bool,
  3. attributes: list(attribute('M, 'T)),
};