Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
module Attribute : sig ... end
The type that represents a Jsx.element, it's a recursive type that allows to represent any HTML structure
val text : string -> element
Helper to represent an element as a string
val null : element
Helper to represent nullability in Jsx, useful to pattern match
val int : int -> element
Helper to render an integer (uses string_of_int)
val float : float -> element
Helper to render an integer (uses string_of_float)
val node : string -> Attribute.t list -> element list -> element
The function to create a HTML DOM Node https://developer.mozilla.org/en-US/docs/Web/API/Node
. Given the tag, list of attributes and list of childrens