aboutsummaryrefslogtreecommitdiff
path: root/src/client/elm/Model/View/SignInView.elm
blob: cf7e6b24fb6084a893833f24679bbf75fbdac550 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
module Model.View.SignInView
  ( SignInView
  , initSignInView
  ) where

type alias SignInView =
  { connecting : Bool
  , error : Maybe String
  }

initSignInView : SignInView
initSignInView =
  { connecting = False
  , error = Nothing
  }