File tree Expand file tree Collapse file tree 1 file changed +14
-1
lines changed
examples/ecommerce-jewellery-store/src/components Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -17,9 +17,22 @@ import {
1717import { Button } from '@progress/kendo-react-buttons' ;
1818import { orderBy , groupBy } from '@progress/kendo-data-query' ;
1919import { chartAreaStackedIcon } from '@progress/kendo-svg-icons' ;
20- import { sampleData , SampleDataItem } from '../data/shared-gd-sampleChartData' ;
20+ import { sampleData } from '../data/shared-gd-sampleChartData' ;
2121import { Pager , PageChangeEvent } from '@progress/kendo-react-data-tools' ;
2222
23+ interface SampleDataItem {
24+ ID : string ;
25+ Product : string ;
26+ SKU : string ;
27+ Category : string ;
28+ Price : number ;
29+ Sales : number ;
30+ Status : string ;
31+ Quantity : number ;
32+ URL : string ;
33+ }
34+
35+
2336const DATA_ITEM_KEY = 'ID' ;
2437const SELECTED_FIELD = 'selected' ;
2538const idGetter = getter ( DATA_ITEM_KEY ) ;
You can’t perform that action at this time.
0 commit comments