blob: 3e3cbca478e15248ea62c2c3385bc630b79b8478 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
module Model.View
( View(..)
) where
import Model.Payment exposing (Payments)
import Model.View.SignIn exposing (..)
type View =
LoadingView
| PaymentView Payments
| SignInView SignIn
|