package components 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 { return (bits>>pos)&1 == 1 } templ dropdownButton(content, name, value string, selected bool) { } templ FilterDropdown(filters domainRecipe.SearchFilters) {
}