mirror of
https://gitlab.com/upRootNutrition/website.git
synced 2025-06-16 04:25:11 -05:00
11 lines
167 B
Elm
11 lines
167 B
Elm
![]() |
module Shared.Model exposing (Model)
|
||
|
|
||
|
import Element exposing (Device)
|
||
|
|
||
|
|
||
|
type alias Model =
|
||
|
{ height : Int
|
||
|
, width : Int
|
||
|
, device : Device
|
||
|
}
|