8 lines
162 B
Elm
8 lines
162 B
Elm
module Page.LoggedOut exposing (view)
|
|
|
|
import Html exposing (..)
|
|
import Html.Attributes exposing (..)
|
|
|
|
view =
|
|
p [ class "header is-1" ] [ text "Loot-a-lot" ]
|