123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- module $Foldername exposing (..)
- import Html exposing (..)
- import Html.Events exposing (..)
- import Html.Attributes exposing (id, class)
- type alias Model =
- {
- }
- initModel : Model
- initModel =
- {
- }
- type Msg
- = NoOp
- view : Model -> Html Msg
- view model =
- div
- []
- [ text "$foldername" ]
- update : Msg -> Model -> (Model, Cmd Msg)
- update msg model =
- ( model, Cmd.none )
- main =
- Html.program
- { init = (initModel, Cmd.none)
- , view = view
- , update = update
- , subscriptions = \_ -> Sub.none
- }
|