Represent the Grid
.
Represents a Row
which is the child of a Grid
.
List (Html msg)
Convenient alias for a List (Html msg)
.
create : Grid msg
Creates a Grid
.
emptyRow : Row msg
Creates an empty Row
.
addRow : Row msg -> Grid msg -> Grid msg
Adds a Row
to the Grid
.
render : Grid msg -> List (Html msg)
Renders the Grid
.
withOneColumn : Children msg -> Row msg
Adds one Column
to a row.
withTwoColumns : Children msg -> Children msg -> Row msg
Creates a Row
with 2 Column
s.
withThreeColumns : Children msg -> Children msg -> Children msg -> Row msg
Creates a Row
with 3 Column
s.
withFourColumns : Children msg -> Children msg -> Children msg -> Children msg -> Row msg
Creates a Row
with 4 Column
s.