diff options
Diffstat (limited to 'website/sandbox/chord-drill-sergeant/src/Tempo.elm')
-rw-r--r-- | website/sandbox/chord-drill-sergeant/src/Tempo.elm | 21 |
1 files changed, 9 insertions, 12 deletions
diff --git a/website/sandbox/chord-drill-sergeant/src/Tempo.elm b/website/sandbox/chord-drill-sergeant/src/Tempo.elm index 270cc5bd6dc6..50485c4c0aba 100644 --- a/website/sandbox/chord-drill-sergeant/src/Tempo.elm +++ b/website/sandbox/chord-drill-sergeant/src/Tempo.elm @@ -3,25 +3,22 @@ module Tempo exposing (render) import Html exposing (..) import Html.Attributes exposing (..) import Html.Events exposing (..) +import UI type alias Props msg = { tempo : Int - , handleIncrease : msg - , handleDecrease : msg , handleInput : String -> msg } render : Props msg -> Html msg -render { tempo, handleIncrease, handleDecrease, handleInput } = - div [] - [ p [] [ text (String.fromInt tempo ++ " BPM") ] - , button [ onClick handleDecrease ] [ text "Slower" ] - , input - [ onInput handleInput - , placeholder "Set tempo..." - ] - [] - , button [ onClick handleIncrease ] [ text "Faster" ] +render { tempo, handleInput } = + div [ class "text-center" ] + [ p [ class "text-5xl py-10" ] [ text (String.fromInt tempo ++ " BPM") ] + , UI.textField + { placeholderText = "Set tempo..." + , handleInput = handleInput + , classes = [] + } ] |