Skip to content

Instantly share code, notes, and snippets.

View dunzerz's full-sized avatar

dunzerz

  • Joined Apr 20, 2026
View GitHub Profile
import { useState, useEffect, useRef } from "react";
const SPORTS = ["AAA (Triple-A)", "AA (Double-A)", "NFL", "CFB", "CBB"];
const BET_TYPES = ["Moneyline", "Spread", "Over/Under", "Parlay", "Prop"];
const RESULT_OPTIONS = ["Pending", "Win", "Loss", "Push"];
const DAYS = ["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"];
const SPORT_COLORS = {
"AAA (Triple-A)": { color: "#a78bfa", bg: "rgba(167,139,250,0.12)", border: "rgba(167,139,250,0.3)" },
"AA (Double-A)": { color: "#38bdf8", bg: "rgba(56,189,248,0.12)", border: "rgba(56,189,248,0.3)" },