blob: cfd5d0f0a056f90cb7484fecfa1d47d55766bf46 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
module View.Loading
( renderLoading
) where
import Signal exposing (Address)
import Html exposing (..)
import Model.Action exposing (Action)
renderLoading : Address Action -> Html
renderLoading address = text ""
|