aboutsummaryrefslogtreecommitdiff
path: root/src/View/Page.elm
diff options
context:
space:
mode:
authorJoris2015-11-13 22:27:08 +0100
committerJoris2015-11-13 22:27:08 +0100
commit237a818b45aeec39b1355927083811b5559810c7 (patch)
tree4606110fbe8f3ed41ada0cf422c92eae6ee472c7 /src/View/Page.elm
parent6a69c596d8cc2c8b7ac1f763cf63e5e3a0e260e9 (diff)
downloadcatchvoid-237a818b45aeec39b1355927083811b5559810c7.tar.gz
catchvoid-237a818b45aeec39b1355927083811b5559810c7.tar.bz2
catchvoid-237a818b45aeec39b1355927083811b5559810c7.zip
Clean up unused Graphic related code
Diffstat (limited to 'src/View/Page.elm')
-rw-r--r--src/View/Page.elm3
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
[]