Files
elm-0.19-workshop/part0/Main.elm
Richard Feldman ff89dc4648 Add part0
2016-09-01 00:46:26 -07:00

24 lines
499 B
Elm

module Main exposing (..)
import Html exposing (..)
import Html.Attributes exposing (..)
elmHubHeader =
header []
[ -- TODO wrap the following 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 put the header here
ul [ class "results" ] []
]