Module Align

type verticalAlign = [
  1. | `top
  2. | `center
  3. | `bottom
]
type horizontalAlign = [
  1. | `left
  2. | `center
  3. | `right
]
val make : ?key:string -> ?h:horizontalAlign -> ?v:verticalAlign -> children:React.element -> unit -> React.element