import { MORE_TILE } from "../config/shop.ts"; import { PRIMARIES, tileUrl } from "../lib/shop.ts"; export function MoreVariations({ family, current, title, shop }) { if (family.length < 2) return null; return (

{`More Variations of ${title}`}

{family.map((one) => ( {PRIMARIES.map((primary) => ( ))} ))}
); }