I am trying to use the aggFunc
prop on one of my columns in a React Ag-grid. I am getting an warning stating:
AG Grid: unable to use aggFunc as package 'ag-grid-enterprise' has not been imported. Check that you have imported the package:
I am importing ag-grid. Here are my import statements:
import {useEffect, useState} from 'react'
import axios from 'axios'
import 'ag-grid-enterprise'
import {RowGroupingModule} from '@ag-grid-enterprise/row-grouping'
import {AgGridReact} from 'ag-grid-react'
import {G2Theme} from '@genre/g2common-theme'
import {ModuleRegistry} from '@ag-grid-community/core'
I wish I could provide more info but I really don’t know where to start with this. The warning is stating that I am not importing ag-grid-enterprise
but I clearly am.