Re-add part3

This commit is contained in:
Richard Feldman
2018-08-13 06:17:49 -04:00
parent 3002567065
commit df15488e97
36 changed files with 5796 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
module Page.Blank exposing (view)
import Html exposing (Html)
view : { title : String, content : Html msg }
view =
{ title = ""
, content = Html.text ""
}