Open external links in new tab

This commit is contained in:
Michael Fatemi 2021-01-06 15:00:24 -05:00
parent 719f72c032
commit 2668219513

View File

@ -15,7 +15,7 @@ export default function BlueButtonLink({
);
} else {
return (
<a href={href} className='blue-button'>
<a href={href} target='_blank' rel='noreferrer' className='blue-button'>
{children}
</a>
);