8 lines
156 B
TypeScript
8 lines
156 B
TypeScript
export function ExternalLink({ children, href }) {
|
|
return (
|
|
<a href={href} rel="noopener noreferrer" target="_blank">
|
|
{children}
|
|
</a>
|
|
)
|
|
}
|