Files
elm-0.19-workshop/part1/Main.elm
Richard Feldman e0c26e5281 Clarify some TODOs
2016-09-03 00:28:03 -07:00

26 lines
546 B
Elm

module Main exposing (..)
import Html exposing (..)
import Html.Attributes exposing (..)
elmHubHeader =
header []
[ -- TODO wrap this text in an <h1>
text "ElmHub"
, span [ class "tagline" ]
[{- TODO put some text in here that says:
"Like GitHub, but for Elm things."
-}
]
]
main =
div [ class "content" ]
[ -- TODO Add elmHubHeader here.
--
-- HINT: You'll need a comma!
ul [ class "results" ] []
]