Add the board class.

This commit is contained in:
Danila Fedorin 2018-05-25 12:11:18 -07:00
parent 43ad995c62
commit f9c7edf717
1 changed files with 1 additions and 1 deletions

View File

@ -23,4 +23,4 @@ renderBoard size board =
let
cells = List.map (\i -> (lookup i board) |> (pair i)) <| allIndices size
in
div [] <| List.map renderIndex cells
div [ class "board" ] <| List.map renderIndex cells