Replace Html.App with Html

This commit is contained in:
Richard Feldman
2016-08-19 03:54:56 -07:00
parent 533638108d
commit 6483af31f3
15 changed files with 27 additions and 27 deletions

View File

@@ -1,13 +1,13 @@
port module Main exposing (..)
import ElmHub exposing (..)
import Html.App
import Html.App as Html
import Json.Decode
main : Program Never
main =
Html.App.program
Html.program
{ view = view
, update = update githubSearch
, init = ( initialModel, githubSearch (getQueryString initialModel.query) )