blob: 5270099aa58b65e134e9b64f661a3dc7aa3f5722 (
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 Action exposing (Action)
renderLoading : Address Action -> Html
renderLoading address = text ""
|