Library
Module
Module type
Parameter
Class
Class type
Declaratively create HTML elements with JSX using OCaml/Reason.
let html: string = JSX.render (
<div>
<h1> {JSX.string("Hello, World!")} </h1>
</div>
)
val render : element -> string
Render a JSX.element to a string.
let html: string = JSX.render (
<div>
<h1> (JSX.string "Hello, World!") </h1>
</div>
)
val float : float -> element
Helper to render a float
val int : int -> element
Helper to render an integer
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 children.
JSX.node(
"a",
[JSX.Attribute.String(("href", "https://ocaml.org"))],
[JSX.string("OCaml")],
);
val null : element
Helper to represent nullability in JSX, useful to pattern match
val string : string -> element
Helper to represent an element as a string
val text : string -> element
Helper to render a text
val unsafe : string -> element
Helper to bypass HTML encoding and treat output as unsafe. This can lead to HTML scaping problems, XSS injections and other security concerns, use with caution.
module Debug : sig ... end
Provides ways to inspect a JSX.element.