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;