Ag grid vs Ag grid community

I figured it out.

I was including this line:

import 'ag-grid-community/dist/styles/ag-grid.css';

When I looked at the grid I was creating, it had all the rows inside it, so I figured out it was a css problem.

When I include the following line:

import "ag-grid/dist/styles/ag-grid.css";

It works.

1 Like