QiTASC / hatchinq / Hatchinq.Paginator

Exposed


type alias Config =
{ theme : Hatchinq.Theme.Theme }


type alias View msg =
{ rowsPerPage : Basics.Int
, offset : Basics.Int
, total : Basics.Int
, nextPage : msg
, previousPage : msg 
}

configure : Config -> List (Hatchinq.Attribute.Attribute v) -> View msg -> Element msg