Main.elm 416 B

1234567891011121314151617181920212223242526
  1. module $foldername exposing (..)
  2. import Html exposing (..)
  3. import Html.Events exposing (..)
  4. import Html.Attributes exposing (id, class, classList)
  5. view model =
  6. div
  7. []
  8. [ text "$foldername" ]
  9. update msg model =
  10. ( model, Cmd.none )
  11. main =
  12. Html.program
  13. { init = ("", Cmd.none)
  14. , view = view
  15. , update = update
  16. , subscriptions = \_ -> Sub.none
  17. }