Created
October 3, 2024 01:24
-
-
Save librasteve/a04e8efc9a538b61d6beb7af03842be0 to your computer and use it in GitHub Desktop.
Page Elm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module HomePage exposing (main) | |
import Html exposing (..) | |
import Html.Attributes exposing (..) | |
view model = | |
div [ class "jumbotron" ] | |
[ h1 [] [ text "Welcome to Dunder Mifflin!" ] | |
, p [] | |
[ text "Dunder Mifflin Inc. (stock symbol " | |
, strong [] [ text "DMI" ] | |
, text <| | |
""" | |
) is a micro-cap regional paper and office | |
supply distributor with an emphasis on servicing | |
small-business clients. | |
""" | |
] | |
] | |
main = | |
view "dummy model" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment