Skip to content

Instantly share code, notes, and snippets.

@noelrappin
Created August 8, 2017 18:03
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 noelrappin/d354277f0f8bffdae10b11ff74549d62 to your computer and use it in GitHub Desktop.
Save noelrappin/d354277f0f8bffdae10b11ff74549d62 to your computer and use it in GitHub Desktop.
displayEditable : Editable -> HTML
displayEditable editable =
case editable of
BeingEdited old new ->
textarea [] [ text new ]
NotBeingEdited value ->
div [] [ text value ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment