mirror of
https://github.com/NoRedInk/noredink-ui.git
synced 2024-11-24 17:02:51 +03:00
14 lines
271 B
Elm
14 lines
271 B
Elm
module Model exposing (Model)
|
|
|
|
import Browser.Navigation exposing (Key)
|
|
import NriModules exposing (ModuleStates)
|
|
import Routes exposing (Route)
|
|
|
|
|
|
type alias Model =
|
|
{ -- Global UI
|
|
route : Route
|
|
, moduleStates : ModuleStates
|
|
, navigationKey : Key
|
|
}
|