Module JustifyContent.Value

type value = [
| `center
| `flex_end
| `flex_start
| `space_around
| `space_between
]
type t = [
| Css_Value.Global.t
| value
]
val show : t -> string