Skip to content

Commit

Permalink
fixed type
Browse files Browse the repository at this point in the history
  • Loading branch information
trisianto committed Oct 27, 2019
1 parent a9fdedb commit a95a938
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/components/TooltipPositioner.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ type Props = {
tooltipContentArgs?: object
}

class TooltipPositioner extends React.Component<Props> {
type State = {
offset: object,
tooltipContainerInitialDimensions: object
}

class TooltipPositioner extends React.Component<Props, State> {
private containerRef = React.createRef<HTMLDivElement>()

state = {
Expand Down

0 comments on commit a95a938

Please sign in to comment.