Remove unused multigridRef

chore/tables-to-TS
ebb-tide 2018-05-09 17:22:56 -07:00
parent 4f96dfb555
commit fe1afd9dca
1 changed files with 0 additions and 2 deletions

View File

@ -85,7 +85,6 @@ interface State {
@ErrorHandling
class TableGraph extends Component<Props, State> {
private multiGridRef: React.Ref<MultiGrid>
private gridContainer: HTMLDivElement
constructor(props) {
super(props)
@ -581,7 +580,6 @@ class TableGraph extends Component<Props, State> {
}
private getMultiGridRef = (r, registerChild) => {
this.multiGridRef = r
return registerChild(r)
}
}