Rename part12 to final

This commit is contained in:
Richard Feldman
2016-09-01 01:35:02 -07:00
parent 79545b20f1
commit b7c72b9f1f
10 changed files with 0 additions and 0 deletions

14
final/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
}