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