无法在React js

时间:2019-01-07 11:13:03

标签: reactjs tippyjs

我已经导入了以下软件包,并且尝试引用以下链接,但我不知道在哪里放置小费代码。请帮助我。

https://atomiks.github.io/tippyjs/html-content

import React from 'react';
import ReactDom from 'react-dom';
import tippy from 'tippy.js';
import 'tippy.js/dist/tippy.css';

class Trial extentds Component {
    render(){
        return(
            <div>
                <Button onClick={this.submitTaggedFace} disabled={!this.validate()} variant="contained" color="primary"
                data-tippy="Tooltip"
                data-tippy-animation="scale"
                data-tippy-duration="0"
                data-tippy-arrow="true"
                data-tippy-delay="[800, 200]"
                >Click to Tag</Button>
            </div>
        )
    }
}

1 个答案:

答案 0 :(得分:1)

您的代码没有错。您必须在其他组件中缺少某些内容。

我创建了以下代码和框示例:

https://codesandbox.io/s/5y8zm52own