31 lines
559 B
Elm
31 lines
559 B
Elm
module Page.Landing exposing
|
|
( Model
|
|
, Msg
|
|
, view
|
|
, init
|
|
, update
|
|
, subscriptions
|
|
, cleanupSubcriptions
|
|
)
|
|
import Element exposing (Element)
|
|
|
|
type alias Model = {}
|
|
type alias Msg = {}
|
|
|
|
init : () -> Model
|
|
init flags = {}
|
|
|
|
cleanupSubcriptions : Model -> Cmd Msg
|
|
cleanupSubcriptions _ = Cmd.none
|
|
|
|
subscriptions : Model -> Sub Msg
|
|
subscriptions _ = Sub.none
|
|
|
|
update : Msg -> Model -> (Model, Cmd Msg)
|
|
update msg model = (model, Cmd.none)
|
|
|
|
view : Model -> Element Msg
|
|
view model =
|
|
Element.el []
|
|
<| Element.text "Landing"
|