about summary refs log tree commit diff
path: root/users/wpcarro/boilerplate/elm/src/Landing.elm
blob: 00bb9e281af408b75f7b3abc4b561c3d87ee2f70 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
module Landing exposing (render)

import Html exposing (..)
import Html.Attributes exposing (..)
import Html.Events exposing (..)
import State


render : State.Model -> Html State.Msg
render model =
    div [ class "pt-10 pb-20 px-10" ]
        [ p [] [ text "Welcome to the landing page!" ]
        ]