a VertexArray is a Vector of sf::Vertext.
if you want just the grid, you could use lines instead (of course VertexArray will also work)
draw a line from (0, 0) to (0, 100)
another from (10, 0) to (10, 100)
another from (20, 0) to (20, 100)
[repeat]
then you do horizontal lines (its the same logic):
draw a line from (0, 0) to (100, 0)
another from (0, 10) to (100, 10)
another from (0, 20) to (100, 20)
(use 'for' loops to avoid repetition of code)