Skip to content

Instantly share code, notes, and snippets.

@grrinchas
Last active December 19, 2017 12:05
Show Gist options
  • Save grrinchas/ecd86254eecfe3b3cbb2c6ebf84878a6 to your computer and use it in GitHub Desktop.
Save grrinchas/ecd86254eecfe3b3cbb2c6ebf84878a6 to your computer and use it in GitHub Desktop.
module Main exposing (main)
import Html exposing (program)
import Models exposing (..)
import Pages
main : Program Never Model msg
main = program
{ init = (initialModel, Cmd.none )
, view = Pages.landing
, update = \msg model -> (model, Cmd.none)
, subscriptions = \model -> Sub.none
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment