Replace Html.App with Html
This commit is contained in:
@@ -3,7 +3,7 @@ module ElmHub exposing (..)
|
||||
import Html exposing (..)
|
||||
import Html.Attributes exposing (..)
|
||||
import Html.Events exposing (..)
|
||||
import Html.App
|
||||
import Html.App as Html
|
||||
import Http
|
||||
import Auth
|
||||
import Task exposing (Task)
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
module Main exposing (..)
|
||||
|
||||
import ElmHub exposing (..)
|
||||
import Html.App
|
||||
import Html.App as Html
|
||||
|
||||
|
||||
main : Program Never
|
||||
main =
|
||||
Html.App.program
|
||||
Html.program
|
||||
{ view = view
|
||||
, update = update
|
||||
, init = ( initialModel, searchFeed initialModel.query )
|
||||
|
||||
Reference in New Issue
Block a user