Made a local tooltip component for replicating our tooltip styles wherever we use tooltips. Applied that tooltip to other items that had tooltips.feature/default_network_editable
parent
2b5c42d27f
commit
2880f8631c
@ -0,0 +1,22 @@ |
||||
const Component = require('react').Component |
||||
const h = require('react-hyperscript') |
||||
const inherits = require('util').inherits |
||||
const ReactTooltip = require('react-tooltip-component') |
||||
|
||||
module.exports = Tooltip |
||||
|
||||
inherits(Tooltip, Component) |
||||
function Tooltip () { |
||||
Component.call(this) |
||||
} |
||||
|
||||
Tooltip.prototype.render = function () { |
||||
const props = this.props |
||||
|
||||
return h(ReactTooltip, { |
||||
position: 'left', |
||||
title: props.title, |
||||
fixed: false, |
||||
}, props.children) |
||||
|
||||
} |
Loading…
Reference in new issue