package main // reservationComponent renders the sticky reservation strip. // Empty inputs render a shell with a "Reservations" label so the strip is never blank. templ reservationComponent(data ReservationData) {
Reservations if data.Phone != "" { { data.Phone } }
if len(data.Hours) > 0 {
for i, line := range data.Hours { if i > 0 { } { line } }
} if data.OpenTable != "" { Book a Table }
}