Skip to content

Instantly share code, notes, and snippets.

View arvindershinh's full-sized avatar

Arvinder Shinh arvindershinh

View GitHub Profile
@arvindershinh
arvindershinh / elmSelect.elm
Created February 6, 2018 11:26
Html Select example with Elm
module Main exposing (..)
import Html exposing (Html, div, form, input, option, select, text)
import Html.Attributes exposing (..)
import Html.Events exposing (onInput)
main : Program Never Model Msg
main =
Html.beginnerProgram { model = model, update = update, view = view }
timeRangeList : List ( String, String )