parent
5d7f62d142
commit
4590a345b1
@ -1,24 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "application",
|
|
||||||
"source-directories": [
|
|
||||||
"src/frontend"
|
|
||||||
],
|
|
||||||
"elm-version": "0.19.0",
|
|
||||||
"dependencies": {
|
|
||||||
"direct": {
|
|
||||||
"elm/browser": "1.0.1",
|
|
||||||
"elm/core": "1.0.2",
|
|
||||||
"elm/html": "1.0.0"
|
|
||||||
},
|
|
||||||
"indirect": {
|
|
||||||
"elm/json": "1.1.3",
|
|
||||||
"elm/time": "1.0.0",
|
|
||||||
"elm/url": "1.0.0",
|
|
||||||
"elm/virtual-dom": "1.0.2"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"test-dependencies": {
|
|
||||||
"direct": {},
|
|
||||||
"indirect": {}
|
|
||||||
}
|
|
||||||
}
|
|
File diff suppressed because it is too large
Load Diff
@ -1,42 +0,0 @@
|
|||||||
module Explore exposing (Msg(..), main, update, view)
|
|
||||||
|
|
||||||
import Browser
|
|
||||||
import Html exposing (Html, button, div, node, text)
|
|
||||||
import Html.Attributes exposing (type_)
|
|
||||||
import Html.Events exposing (onClick)
|
|
||||||
|
|
||||||
|
|
||||||
main =
|
|
||||||
Browser.sandbox { init = 0, update = update, view = view }
|
|
||||||
|
|
||||||
|
|
||||||
type Msg
|
|
||||||
= Increment
|
|
||||||
| Decrement
|
|
||||||
|
|
||||||
|
|
||||||
update msg model =
|
|
||||||
case msg of
|
|
||||||
Increment ->
|
|
||||||
model + 1
|
|
||||||
|
|
||||||
Decrement ->
|
|
||||||
model - 1
|
|
||||||
|
|
||||||
|
|
||||||
withStyle html =
|
|
||||||
div []
|
|
||||||
[ node "style"
|
|
||||||
[ type_ "text/css" ]
|
|
||||||
[ text "@import url(/resources/public/css/app.css)" ]
|
|
||||||
, html
|
|
||||||
]
|
|
||||||
|
|
||||||
|
|
||||||
view model =
|
|
||||||
div []
|
|
||||||
[ button [ onClick Decrement ] [ text "-" ]
|
|
||||||
, div [] [ text (String.fromInt model) ]
|
|
||||||
, button [ onClick Increment ] [ text "+" ]
|
|
||||||
]
|
|
||||||
|> withStyle
|
|
Loading…
Reference in new issue