UNPKG

@upendradevsingh/webcore

Version:
17 lines (13 loc) 324 B
import React from 'react'; const Anchor = (props) => { let attrs = { href: `${props.nonSecureBaseUrl}${props.to}` }; if(typeof props.gaq !== 'undefined') attrs['data-gaq-event'] = props.gaq; return( <a {...attrs}> {props.children} </a> ) } export default Anchor;