File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
packages/core/src/docs/examples Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -36,12 +36,12 @@ export default {
36
36
] ,
37
37
} ;
38
38
39
- interface GridLineDemoProps {
39
+ interface SelectionGridLineProps {
40
40
columnSelectionGridLines : boolean ;
41
41
rowSelectionGridLines : boolean ;
42
42
}
43
43
44
- export const GridLineDemo : React . FC < GridLineDemoProps > = p => {
44
+ export const SelectionGridLine : React . FC < SelectionGridLineProps > = p => {
45
45
const { cols, getCellContent } = useMockDataGenerator ( 10 ) ;
46
46
47
47
return (
@@ -57,12 +57,12 @@ export const GridLineDemo: React.FC<GridLineDemoProps> = p => {
57
57
) ;
58
58
} ;
59
59
60
- ( GridLineDemo as any ) . args = {
60
+ ( SelectionGridLine as any ) . args = {
61
61
columnSelectionGridLines : true ,
62
62
rowSelectionGridLines : true ,
63
63
} ;
64
64
65
- ( GridLineDemo as any ) . argTypes = {
65
+ ( SelectionGridLine as any ) . argTypes = {
66
66
columnSelectionGridLines : {
67
67
control : {
68
68
type : "boolean" ,
You can’t perform that action at this time.
0 commit comments