newsbot-portal/components/bulma/html/img.templ

9 lines
133 B
Plaintext
Raw Normal View History

2024-07-14 09:07:53 -07:00
package html
templ Img(src string) {
<img src={ src } />
}
templ ImgAlt(src, alt string) {
<img src={ src } alt={ alt }/>
}