noredink-ui/styleguide-app/Model.elm

14 lines
271 B
Elm
Raw Normal View History

2018-09-26 17:02:10 +03:00
module Model exposing (Model)
2018-02-13 00:32:38 +03:00
2018-12-05 21:56:04 +03:00
import Browser.Navigation exposing (Key)
2018-02-13 00:32:38 +03:00
import NriModules exposing (ModuleStates)
import Routes exposing (Route)
type alias Model =
{ -- Global UI
route : Route
, moduleStates : ModuleStates
2018-12-05 21:56:04 +03:00
, navigationKey : Key
2018-02-13 00:32:38 +03:00
}