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 (..) | |
| import Html.App as App | |
| import Html.Events exposing (onClick) | |
| import Req exposing (..) | |
| main : Program Never | |
| main = |
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 (..) | |
| import Html.App as App | |
| import Html.Events exposing (onClick) | |
| import Time | |
| -- MODEL |
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 RandomGif exposing (..) | |
| import Html exposing (..) | |
| import Html.Attributes exposing (style) | |
| import Html.Events exposing (onClick) | |
| import Http | |
| import Json.Decode as Json | |
| import Task | |
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 Component exposing (..) | |
| import Html exposing (..) | |
| import Html.Attributes exposing (style) | |
| import Html.Events exposing (onClick) | |
| import Ports exposing (..) | |
| -- MODEL |
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 Component exposing (..) | |
| import Html exposing (..) | |
| import Html.Attributes exposing (style) | |
| import Html.Events exposing (onClick) | |
| import Ports exposing (..) | |
| -- MODEL |
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 (..) | |
| import Html.App as App | |
| import Html.Attributes exposing (..) | |
| import Mouse exposing (Position) | |
| import Window exposing (Size) | |
| import Task | |
| -- MODEL | |
| plottingSize = Size 600 400 |
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 Counter exposing (..) | |
| import Html exposing (..) | |
| import Html.Attributes exposing (style) | |
| import Html.Events exposing (onClick) | |
| -- MODEL | |
| type alias Model = Int |
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 Flexy | |
| ( Design, design | |
| , row, column, rowReverse, columnReverse | |
| , wrap, wrapReverse, noWrap | |
| , justifyStart, justifyCenter, justifyEnd, justifyBetween, justifyAround | |
| , alignItemsStart, alignItemsCenter, alignItemsEnd | |
| , alignItemsStretch, alignItemsBaseline | |
| , alignContentStart, alignContentCenter, alignContentEnd, alignContentStretch | |
| , alignContentBetween, alignContentAround | |
| , flex, order |
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, div, button, text) | |
| import Html.App as App exposing (beginnerProgram) | |
| import Html.Events exposing (onClick) | |
| import Html.Attributes exposing (style) | |
| main : Program Never | |
| main = | |
| beginnerProgram { model = init 0 0 0, view = view, update = update } | |
| -- MODEL |
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, div, button, text) | |
| import Html.App as App exposing (beginnerProgram) | |
| import Html.Events exposing (onClick) | |
| import Html.Attributes exposing (style) | |
| main : Program Never | |
| main = | |
| beginnerProgram { model = init (0,0) (0,0), view = view, update = update } | |
| -- MODEL |