diff options
author | Joris | 2015-11-13 22:27:08 +0100 |
---|---|---|
committer | Joris | 2015-11-13 22:27:08 +0100 |
commit | 237a818b45aeec39b1355927083811b5559810c7 (patch) | |
tree | 4606110fbe8f3ed41ada0cf422c92eae6ee472c7 /src/View/Page.elm | |
parent | 6a69c596d8cc2c8b7ac1f763cf63e5e3a0e260e9 (diff) |
Clean up unused Graphic related code
Diffstat (limited to 'src/View/Page.elm')
-rw-r--r-- | src/View/Page.elm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/View/Page.elm b/src/View/Page.elm index 54f5925..a4e0ba0 100644 --- a/src/View/Page.elm +++ b/src/View/Page.elm @@ -13,7 +13,7 @@ import Json.Encode exposing (string) import Model.Game exposing (Game) import Model.Round exposing (..) -import View.Game exposing (gameView, render) +import View.Game exposing (render) import View.Round exposing (roundView) pageView : Game -> Html @@ -23,7 +23,6 @@ pageView game = [ h1 [] [ text "cAtchVoid" ] , div [ id "game" ] - -- [ fromElement <| render game ] [ render game ] , p [] |