Last active
          May 21, 2016 20:32 
        
      - 
      
 - 
        
Save j-hannes/be0649c2f3edb6575e38cb76681e05a6 to your computer and use it in GitHub Desktop.  
    Counter v1
  
        
  
    
      This file contains hidden or 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 Counter exposing (..) | |
| import Html exposing (button, div, span, text) | |
| main = | |
| div [] | |
| [ button [] [ text "-" ] | |
| , span [] [ text "0" ] | |
| , button [] [ text "+" ] | |
| ] | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment