client/hippo/components/tool-tip.jsx in hippo-fw-0.9.5 vs client/hippo/components/tool-tip.jsx in hippo-fw-0.9.6
- old
+ new
@@ -1,13 +1,12 @@
-import React, { PureComponent } from 'react';
+import React from 'react';
import { Tooltip as Tippy } from 'react-tippy';
import 'react-tippy/dist/tippy.css';
// Use a wrapper component even though it doesn't really add any functionality
// In the future we'll add a Manager wrapper so that multiple tooltips cannot be shown at once
-export default class ToolTip extends PureComponent {
-
+export default class ToolTip extends React.PureComponent {
render() {
const { children, ...tipProps } = this.props;
return (
<Tippy
{...tipProps}