Skip to content

Instantly share code, notes, and snippets.

@leojpod
Created May 18, 2017 12:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save leojpod/f80b28dab7f2cabae094f37671d96b30 to your computer and use it in GitHub Desktop.
Save leojpod/f80b28dab7f2cabae094f37671d96b30 to your computer and use it in GitHub Desktop.
Main types game-of-like
import Setup.Types exposing (Setup, SetupMsg(..))
import Board.Types exposing (Board, BoardMsg)
-- MODEL
type alias Model =
{ board : Board, setup : Setup, mdl : Material.Model }
-- MESSAGE
type Msg
= BoardMsg BoardMsg
| SetupMsg SetupMsg
| Mdl (Material.Msg Msg)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment