File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
extensions/ql-vscode/src/view/common Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 11import * as React from "react" ;
2- import { forwardRef } from "react" ;
2+ import { ReactNode , forwardRef } from "react" ;
33import { styled } from "styled-components" ;
44
55/*
@@ -21,7 +21,7 @@ const StyledDataGrid = styled.div<{ $gridTemplateColumns: string | number }>`
2121
2222interface DataGridProps {
2323 gridTemplateColumns : string ;
24- children : React . ReactNode ;
24+ children : ReactNode ;
2525}
2626
2727export function DataGrid ( { gridTemplateColumns, children } : DataGridProps ) {
@@ -50,7 +50,7 @@ const StyledDataGridRow = styled.div<{ $focused?: boolean }>`
5050
5151interface DataGridRowProps {
5252 focused ?: boolean ;
53- children : React . ReactNode ;
53+ children : ReactNode ;
5454 "data-testid" ?: string ;
5555}
5656
@@ -84,7 +84,7 @@ interface DataGridCellProps {
8484 gridRow ?: string | number ;
8585 gridColumn ?: string | number ;
8686 className ?: string ;
87- children : React . ReactNode ;
87+ children : ReactNode ;
8888}
8989
9090export function DataGridCell ( {
You can’t perform that action at this time.
0 commit comments