Hahnah's elm-pages Blog Template

Post A

Authors
Default Author
Published on
Updated on
0 min reading time

Post A description

This is Post A.

Can show image like this:

Amonng Us

Butonn sample in Elm

Can show code block like this:

import Browser
import Html exposing (Html, button, div, text)
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
view model =
div []
[ button [ onClick Decrement ] [ text "-" ]
, div [] [ text (String.fromInt model) ]
, button [ onClick Increment ] [ text "+" ]
]

Can show a link like this:

elm button example.

P.S.

Nothing. Don't mind.

Older post← Post D
Newer postPost D →