Skip to content

Commit

Permalink
Removed unused property
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffersoncasimir authored Feb 28, 2024
1 parent af90903 commit dece67f
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
import * as R from 'ramda';
import React, {FunctionComponent, MutableRefObject} from 'react';
import React, {FunctionComponent} from 'react';
import {scaleLinear} from 'd3-scale';
import {withParentSize} from '@visx/responsive';
import {WithParentSizeProps} from "@visx/responsive/lib/enhancers/withParentSize";

type CProps = {
ref?: MutableRefObject<any>,
parentWidth?: number,
parentHeight?: number,
mouseDown?: (_: any) => void,
Expand All @@ -20,7 +19,6 @@ type CProps = {
/**
*
* @param root0
* @param root0.ref
* @param root0.parentWidth
* @param root0.parentHeight
* @param root0.mouseDown
Expand All @@ -32,7 +30,6 @@ type CProps = {
* @param root0.chunksURL
*/
const ResponsiveViewer : FunctionComponent<CProps> = ({
ref,
parentWidth,
parentHeight,
mouseDown,
Expand Down

0 comments on commit dece67f

Please sign in to comment.