website/frontend/src/Shared/Model.elm

11 lines
167 B
Elm
Raw Normal View History

2024-11-25 18:50:12 -06:00
module Shared.Model exposing (Model)
import Element exposing (Device)
type alias Model =
{ height : Int
, width : Int
, device : Device
}