example-spa-elm-app/frontend/src/Page/Contact.elm
2025-01-26 16:12:06 -05:00

28 lines
484 B
Elm

module Page.Contact exposing
( Model
, Msg
, view
, init
, update
, subscriptions
)
import Element exposing (Element)
type alias Model = {}
type alias Msg = {}
init : () -> (Model, Cmd Msg)
init flags = ({}, 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 "Contact"