This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Main exposing (..) | |
import Html exposing (Html, Attribute, div, text) | |
import Html.Attributes exposing (style) | |
import Time exposing (Time, every) | |
import List exposing (map) | |
import String exposing (join, length) | |
import Date exposing (fromTime, hour, minute, second) | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Main exposing (..) | |
import Html exposing (Html, Attribute, div, text) | |
import Html.Attributes exposing (style) | |
import Time exposing (Time, every, hour, minute, second, inHours, inMinutes, inSeconds) | |
import List exposing (map) | |
import String exposing (join, length) | |
-- STYLES |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Html exposing (Html, text, div) | |
import Html.Attributes exposing (style) | |
import Html.App as Html | |
import Mouse exposing (..) | |
main = | |
Html.program | |
{ init = init | |
, view = view | |
, update = update |