Fix folder structure in part12

This commit is contained in:
Richard Feldman
2016-09-01 05:16:14 -07:00
parent 45ec4b157e
commit 4f226ec557
8 changed files with 4 additions and 4 deletions

14
part12/Main.elm Normal file
View File

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