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

9 lines
133 B
Plaintext

package html
templ Img(src string) {
<img src={ src } />
}
templ ImgAlt(src, alt string) {
<img src={ src } alt={ alt }/>
}