diff options
Diffstat (limited to 'src/client/elm/View/Loading.elm')
-rw-r--r-- | src/client/elm/View/Loading.elm | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/client/elm/View/Loading.elm b/src/client/elm/View/Loading.elm index f8c6cd6..cfd5d0f 100644 --- a/src/client/elm/View/Loading.elm +++ b/src/client/elm/View/Loading.elm @@ -2,7 +2,11 @@ module View.Loading ( renderLoading ) where +import Signal exposing (Address) + import Html exposing (..) -renderLoading : Html -renderLoading = text "" +import Model.Action exposing (Action) + +renderLoading : Address Action -> Html +renderLoading address = text "" |