website/frontend/src/Shared/Model.elm
2024-11-26 13:41:06 -06:00

10 lines
167 B
Elm
Executable file

module Shared.Model exposing (Model)
import Element exposing (Device)
type alias Model =
{ height : Int
, width : Int
, device : Device
}