import copyIcon from '@fortawesome/fontawesome-free-regular/faCopy'; import FontAwesomeIcon from '@fortawesome/react-fontawesome'; import { isNil } from 'ramda'; import React from 'react'; import { CopyToClipboard } from 'react-copy-to-clipboard'; import './CreateShortUrlResult.scss' import { Tooltip } from 'reactstrap'; export default class CreateShortUrlResult extends React.Component { state = { showCopyTooltip: false }; componentDidMount() { this.props.resetCreateShortUrl(); } render() { const { error, result } = this.props; if (error) { return