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 Main exposing (..) | |
{- This file re-implements the Elm Counter example (1 counter) with elm-mdl | |
buttons. Use this as a starting point for using elm-mdl components in your own | |
app. | |
-} | |
import Html.App as App | |
import Html exposing (..) | |
import Html.Attributes exposing (href, class, style) |
OlderNewer