/* global React */ function BtnPrimary({ children, arrow = '→', onClick, href }) { const C = href ? 'a' : 'button'; return {children}{arrow}; } function BtnGhost({ children, arrow = '→', onClick, href }) { const C = href ? 'a' : 'button'; return {children} {arrow}; } function NavCTA({ children = 'Stuur me een berichtje', onClick, href = 'contact.html' }) { return {children}; } window.BtnPrimary = BtnPrimary; window.BtnGhost = BtnGhost; window.NavCTA = NavCTA;