npm install @vx/gridThe @vx/grid package lets you create gridlines for charts. render horizontally, render vertically, or you can use a to get them both at once!
``js
import { Grid } from '@vx/grid';
// or
// import * as Grid from '@vx/grid';
//
const grid = (
yScale={yScale}
width={xMax}
height={yMax}
numTicksRows={numTicksForHeight(height)}
numTicksColumns={numTicksForWidth(width)}
/>
);
`
```
npm install --save @vx/grid