mirror of
https://gitlab.com/upRootNutrition/website.git
synced 2025-06-17 04:45:12 -05:00
10 lines
167 B
Elm
Executable file
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
|
|
}
|