Change miniatures when hover

This commit is contained in:
2020-10-16 12:03:07 +02:00
parent bf1d35c179
commit 948df5da9a
4 changed files with 169 additions and 49 deletions
+14
View File
@@ -0,0 +1,14 @@
module Hover exposing (..)
import Time
type alias Hover a =
{ element : a
, time : Time.Posix
}
hover : a -> Time.Posix -> Hover a
hover element time =
{ element = element, time = time }