Last active
March 4, 2018 03:25
-
-
Save arowM/6fd0d1fb1880b1adc5ad4a36a3132216 to your computer and use it in GitHub Desktop.
Sample code for arowM/elm-embedded-gist
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 Main exposing (main) | |
import EmbeddedGist exposing (unsafeEmbeddedGist) | |
import Html exposing (Html) | |
main : Html msg | |
main = | |
Html.div | |
[] | |
[ Html.div | |
[] | |
[ Html.text "Here is embedded gist code!" | |
, unsafeEmbeddedGist "arowM/6fd0d1fb1880b1adc5ad4a36a3132216" | |
] | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment