diff --git a/Go/View.elm b/Go/View.elm index 856e504..c9e433c 100644 --- a/Go/View.elm +++ b/Go/View.elm @@ -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