11 lines
170 B
Elm
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 ""
|
|
}
|