app: Use OutboundLink for Amazon links.

This commit is contained in:
Vishnu KS
2020-09-27 22:39:41 +05:30
parent 52e63d7c1d
commit 5dc79eeca6

View File

@@ -1,4 +1,5 @@
import React from "react";
import { OutboundLink } from "gatsby-plugin-google-analytics"
const getTaggetURL = (book) => {
return book.amazon_url + "?tag=vishnuks-20";
@@ -6,8 +7,8 @@ const getTaggetURL = (book) => {
export default ({ book }) => {
return (
<a href={getTaggetURL(book)} target="_blank">
<OutboundLink href={getTaggetURL(book)} target="_blank">
<img style={{ "width": "30px" }} src="https://img.icons8.com/color/48/000000/amazon.png"/>
</a>
</OutboundLink>
)
}