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 {
3636 ] ,
3737} ;
3838
39- interface GridLineDemoProps {
39+ interface SelectionGridLineProps {
4040 columnSelectionGridLines : boolean ;
4141 rowSelectionGridLines : boolean ;
4242}
4343
44- export const GridLineDemo : React . FC < GridLineDemoProps > = p => {
44+ export const SelectionGridLine : React . FC < SelectionGridLineProps > = p => {
4545 const { cols, getCellContent } = useMockDataGenerator ( 10 ) ;
4646
4747 return (
@@ -57,12 +57,12 @@ export const GridLineDemo: React.FC<GridLineDemoProps> = p => {
5757 ) ;
5858} ;
5959
60- ( GridLineDemo as any ) . args = {
60+ ( SelectionGridLine as any ) . args = {
6161 columnSelectionGridLines : true ,
6262 rowSelectionGridLines : true ,
6363} ;
6464
65- ( GridLineDemo as any ) . argTypes = {
65+ ( SelectionGridLine as any ) . argTypes = {
6666 columnSelectionGridLines : {
6767 control : {
6868 type : "boolean" ,
You can’t perform that action at this time.
0 commit comments