# Form.io AGGrid Integration

This module contains an integration between the Form.io renderer + AGGrid library. This achieves this by creating a new component called "AG Grid" that extends the Data Table component, and instead
of rendering the default grid from our Premium Components, it instead uses the AGGrid library.

## Usage

```javascript
// This library requires the @formio/premium library.
import premium from '@formio/premium';
import aggrid from '@formio/premium';
import { Formio } from '@formio/js';

// You need to have a valid Library License key to use this package.
// If you don't have one yet, please contact sales@form.io.
Formio.license = 'yourLibraryLicenseKey';
Formio.use(premium);
Formio.use(aggrid);
```