From 9b7db076153d4a2431fa94674a6bdd132e4e0969 Mon Sep 17 00:00:00 2001 From: James Carlson Date: Fri, 7 Jun 2024 09:41:58 +0200 Subject: [PATCH] Restore counter test app to previous state --- counter/src/Frontend.elm | 1 - 1 file changed, 1 deletion(-) diff --git a/counter/src/Frontend.elm b/counter/src/Frontend.elm index df38157..0cc7557 100644 --- a/counter/src/Frontend.elm +++ b/counter/src/Frontend.elm @@ -72,5 +72,4 @@ view model = , Html.div [ style "padding" "10px" ] [ Html.text (String.fromInt model.counter) ] , Html.button [ onClick Decrement ] [ text "-" ] , Html.div [ style "padding-top" "15px", style "padding-bottom" "15px" ] [ Html.text "Click me then refresh me!" ] - , Html.button [ onClick Reset ] [ text "Reset" ] ]