diff options
author | Joris Guyonvarch | 2015-07-19 00:45:42 +0200 |
---|---|---|
committer | Joris Guyonvarch | 2015-07-19 00:45:42 +0200 |
commit | a6727f104f808e533052f2bd83bc89cd6bfa0522 (patch) | |
tree | 2c7b8b16d377c04e9e9a32b74102666f6dae16cf /src/client/Model | |
parent | 3486644b442a0800f645ec9ae7f3ce8fe2b3c9cd (diff) |
Adding UI to sign in and sign out
Diffstat (limited to 'src/client/Model')
-rw-r--r-- | src/client/Model/View.elm | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/client/Model/View.elm b/src/client/Model/View.elm new file mode 100644 index 0000000..ca819e3 --- /dev/null +++ b/src/client/Model/View.elm @@ -0,0 +1,10 @@ +module Model.View + ( View(..) + ) where + +import Model.Payment exposing (Payments) + +type View = + LoadingView + | PaymentView Payments + | SignInView String |