@mui/x-data-grid-premium
Version:
The Premium plan edition of the MUI X Data Grid Components.
26 lines (24 loc) • 925 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.DataGrid = DataGrid;
exports.DataGridPro = DataGridPro;
/**
* @deprecated Import DataGridPremium instead.
*/
function DataGrid() {
if (process.env.NODE_ENV === 'production') {
return null;
}
throw new Error(["You try to import Data Grid from @mui/x-data-grid-premium but this module isn't exported from this npm package.", '', "Instead, you can do `import { DataGridPremium } from '@mui/x-data-grid-premium'`.", ''].join('\n'));
}
/**
* @deprecated Import DataGridPremium instead.
*/
function DataGridPro() {
if (process.env.NODE_ENV === 'production') {
return null;
}
throw new Error(["You try to import Data Grid Pro from @mui/x-data-grid-premium but this module isn't exported from this npm package.", '', "Instead, you can do `import { DataGridPremium } from '@mui/x-data-grid-premium'`.", ''].join('\n'));
}