Files
elm-0.19-workshop/advanced/part3/src/Page/Blank.elm
T
Richard Feldman df15488e97 Re-add part3
2018-08-13 06:33:19 -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 ""
}