5 lines
147 B
JavaScript
5 lines
147 B
JavaScript
export const WebLink = ({ href, txt }) => (
|
|
<a href={href} className="underline decoration-2 hover:decoration-4" title={txt}>
|
|
{txt}
|
|
</a>
|
|
)
|