diff options
Diffstat (limited to 'src/View/View.elm')
-rw-r--r-- | src/View/View.elm | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/View/View.elm b/src/View/View.elm index d7a9b99..e86ea52 100644 --- a/src/View/View.elm +++ b/src/View/View.elm @@ -34,9 +34,15 @@ title : Html title = div [ class "title" ] - [ h1 [] [ text "Timer" ] + [ button + [ onClick (Signal.send updates Initialize) + , class "title" + ] + [ text "Timer" ] , button - [ onClick (Signal.send updates AddNewTimer) ] + [ onClick (Signal.send updates AddNewTimer) + , class "addTimer" + ] [ i [ class "fa fa-fw fa-plus" ] [] |