Module JSX.Attribute

type t('M, 'T) = ('M, t'('M, 'T));
and name('M, 'T) =
  1. | Identifier(Identifier.t('M, 'T))
  2. | NamespacedName(NamespacedName.t('M, 'T))
;
and value('M, 'T) =
  1. | Literal('T, Literal.t('M))
  2. | ExpressionContainer('T, ExpressionContainer.t('M, 'T))
;
and t'('M, 'T) = {
  1. name: name('M, 'T),
  2. value: option(value('M, 'T)),
};