Add part0
This commit is contained in:
23
part0/Main.elm
Normal file
23
part0/Main.elm
Normal file
@@ -0,0 +1,23 @@
|
||||
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" ] []
|
||||
]
|
||||
Reference in New Issue
Block a user