Files
zap.stream/src/element/external-link.tsx
Alejandro Gomez 7a6f4048fb feat: cards
2023-07-26 10:27:48 +02:00

8 lines
156 B
TypeScript

export function ExternalLink({ children, href }) {
return (
<a href={href} rel="noopener noreferrer" target="_blank">
{children}
</a>
)
}