|
@@ -11,6 +11,7 @@ class EmptyListCTA extends Component<Props, any> {
|
|
|
buttonIcon,
|
|
buttonIcon,
|
|
|
buttonLink,
|
|
buttonLink,
|
|
|
buttonTitle,
|
|
buttonTitle,
|
|
|
|
|
+ onClick,
|
|
|
proTip,
|
|
proTip,
|
|
|
proTipLink,
|
|
proTipLink,
|
|
|
proTipLinkTitle,
|
|
proTipLinkTitle,
|
|
@@ -19,7 +20,7 @@ class EmptyListCTA extends Component<Props, any> {
|
|
|
return (
|
|
return (
|
|
|
<div className="empty-list-cta">
|
|
<div className="empty-list-cta">
|
|
|
<div className="empty-list-cta__title">{title}</div>
|
|
<div className="empty-list-cta__title">{title}</div>
|
|
|
- <a href={buttonLink} className="empty-list-cta__button btn btn-xlarge btn-success">
|
|
|
|
|
|
|
+ <a onClick={onClick} href={buttonLink} className="empty-list-cta__button btn btn-xlarge btn-success">
|
|
|
<i className={buttonIcon} />
|
|
<i className={buttonIcon} />
|
|
|
{buttonTitle}
|
|
{buttonTitle}
|
|
|
</a>
|
|
</a>
|