package components import "fmt" import domainRecipe "github.com/haydenhargreaves/Potion/internal/domain/recipe" // isBitActive returns true when the bit at pos (0 indexed) is true. func isBitActive(bits, pos int) bool { x := (bits>>pos)&1 == 1 fmt.Printf("BITS: %d, POS: %d, VAL: %v\n", bits, pos, x) return x } templ dropdownButton(content, name, value string, selected bool) { } templ FilterDropdown(filters domainRecipe.SearchFilters) { }