reach/ui

Types

pub type Attributes(msg) =
  List(Attribute(msg))
pub type Children(msg) =
  List(Element(msg))

Values

pub fn box(
  class: Class,
  attributes: List(Attribute(a)),
  children: List(Element(a)),
) -> Element(a)
pub fn box_(
  attributes: List(Attribute(a)),
  children: List(Element(a)),
) -> Element(a)
pub fn button(
  class: Class,
  attributes: List(Attribute(a)),
  text: String,
) -> Element(a)
pub fn button_(
  attributes: List(Attribute(a)),
  text: String,
) -> Element(a)
pub fn classes(classes: List(String)) -> List(Attribute(a))
pub fn code(
  class: Class,
  attributes: List(Attribute(a)),
  text: String,
) -> Element(a)
Search Document