import React from 'react'; import Tooltip from 'rc-tooltip'; const prefixCls = 'ant-popover'; export default React.createClass({ getDefaultProps() { return { transitionName: '', placement: 'top', trigger: 'hover' }; }, render() { const overlay =
{this.props.title}
{this.props.overlay}
; const transitionName = ({ top: 'zoom-down', bottom: 'zoom-up', left: 'zoom-right', right: 'zoom-left' })[this.props.placement]; return ( {this.props.children} ); } });