14 lines
221 B
Plaintext
14 lines
221 B
Plaintext
|
package components
|
||
|
|
||
|
templ A(href string, text string) {
|
||
|
<a href={ templ.URL(href) }>
|
||
|
{ text }
|
||
|
</a>
|
||
|
}
|
||
|
|
||
|
templ ANewTab(href string, text string) {
|
||
|
<a href={ templ.URL(href) } target="_blank">
|
||
|
{ text }
|
||
|
</a>
|
||
|
}
|