Files
elm-0.19-workshop/part6/Main.elm
Richard Feldman d3b89f4d14 Misc fixes
2016-06-25 08:42:42 -07:00

15 lines
286 B
Elm

module Main exposing (..)
import ElmHub exposing (..)
import Html.App
main : Program Never
main =
Html.App.program
{ view = view
, update = update
, init = ( initialModel, searchFeed initialModel.query )
, subscriptions = \_ -> Sub.none
}