Files
elm-0.19-workshop/intro/part9/src/Page/Blank.elm
Richard Feldman 17f96d1b56 Add part9
2018-08-12 14:50:14 -04:00

11 lines
170 B
Elm

module Page.Blank exposing (view)
import Html exposing (Html)
view : { title : String, content : Html msg }
view =
{ title = ""
, content = Html.text ""
}