Skip to content
This repository has been archived by the owner on Mar 1, 2024. It is now read-only.

Commit

Permalink
Merge pull request #236 from ecoleman/broken-type-import
Browse files Browse the repository at this point in the history
fix(Tooltip): Fix non-existant Placement import
  • Loading branch information
jonthomp authored Jun 15, 2018
2 parents cad0206 + d86b86a commit 86f947a
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/components/Tooltip/Tooltip.react.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,12 @@

import * as React from "react";
import cn from "classnames";
import { Manager, Placement, Reference, Popper } from "react-popper";
import type { PopperChildrenProps, ReferenceChildrenProps } from "react-popper";
import { Manager, Reference, Popper } from "react-popper";
import type {
Placement,
PopperChildrenProps,
ReferenceChildrenProps,
} from "react-popper";
import "./Tooltip.css";

type Props = {|
Expand Down

0 comments on commit 86f947a

Please sign in to comment.