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

import Model.View exposing (..)

type alias Model =
  { view : View
  }

initialModel : Model
initialModel =
  { view = LoadingView
  }