Skip to content

Instantly share code, notes, and snippets.

@arowM
Last active March 4, 2018 03:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arowM/6fd0d1fb1880b1adc5ad4a36a3132216 to your computer and use it in GitHub Desktop.
Save arowM/6fd0d1fb1880b1adc5ad4a36a3132216 to your computer and use it in GitHub Desktop.
Sample code for arowM/elm-embedded-gist
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