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 InputWithAddAction (Model, Action, view, update, init) where | |
| import Html exposing (div, input, button, text) | |
| import Html.Events exposing (onClick, on, targetValue) | |
| import Html.Attributes exposing (value) | |
| import Signal | |
| type Action = UpdatedValue String |
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 StartAppTest where | |
| import Html exposing (text, Html) | |
| import StartApp | |
| import Effects exposing (Effects) | |
| import Time | |
| import Signal exposing (Address) | |
| type alias Model = Float |