personal-site/pkg/ui/models/search_result.go
2025-06-17 20:19:58 -04:00

21 lines
266 B
Go

package models
import (
. "maragu.dev/gomponents"
. "maragu.dev/gomponents/html"
)
type SearchResult struct {
Title string
URL string
}
func (s *SearchResult) Render() Node {
return Li(
Class("list-row"),
A(
Href(s.URL),
Text(s.Title),
),
)
}