Remove the debug text.

This commit is contained in:
Danila Fedorin 2018-05-25 21:16:18 -07:00
parent 54d1229c9f
commit 237630054b
1 changed files with 1 additions and 2 deletions

3
Go.elm
View File

@ -28,8 +28,7 @@ initDummy = (Model
view : Model -> Html Msg view : Model -> Html Msg
view m = div [] view m = div []
[ text (toString m.board) [ renderBoard m.sessionSize m.board
, renderBoard m.sessionSize m.board
] ]
update : Msg -> Model -> (Model, Cmd Msg) update : Msg -> Model -> (Model, Cmd Msg)