import { component$, useSignal } from "@builder.io/qwik"
import { cn } from "./design"
type Props = {
class?: string
}
const minValue = 2;
const maxValue = 6;
const teamSizes = Array.from({ length: maxValue - minValue + 1 }, (_, i) => i + minValue);
export const TeamCounter = component$(({ class: className }: Props) => {
const teammates = useSignal(2)
const shake = useSignal(false)
return (
{teamSizes.map((num) => (
+{num}
))}
)
})