This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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)" }, |