package view import ( "github.com/rjNemo/rentease/config" ) type HomePageViewModel struct { Name string Address string ZipCode string City string PhoneNumber string Email string Items []config.HostItem } templ Index(host *HomePageViewModel) { @PublicLayout() {
{ host.Name }
} }