UNPKG

@progress/kendo-react-grid

Version:

React Data Grid (Table) provides 100+ ready-to-use data grid features. KendoReact Grid package

32 lines (31 loc) 1.05 kB
/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { GridNoRecordsProps } from '../../interfaces/GridNoRecordsProps.js'; import * as React from 'react'; /** * Represents the GridNoRecords component. The component is rendered when the `data` property of the Grid is empty or `null`. * * @example * ```jsx * const App = () => { * return ( * <Grid data={[]}> * <GridNoRecords>There is no data available</GridNoRecords> * <GridColumn field="id" /> * <GridColumn field="name" /> * </Grid> * ); * }; * * export default App; * ``` */ export declare const GridNoRecords: { (props: GridNoRecordsProps): React.JSX.Element; displayName: string; };