fixed bug in sass, may backtrack to modify player ui

This commit is contained in:
Mikayla Dobson
2022-09-20 12:06:35 -05:00
parent e82d12b10e
commit 1e24bd0d6c
9 changed files with 140 additions and 90 deletions

View File

@@ -1,10 +1,10 @@
import { setStateAwaitAction, setStateBuyCard, setStateGetChips, setStateReserveCard } from "../../hooks/stateSetters";
import { useEffect, useState } from "react";
import { PlayerProps } from "../../util/propTypes";
import { CardData, PlayerData } from "../../util/types"
import { v4 } from "uuid";
import { setStateAwaitAction, setStateBuyCard, setStateGetChips, setStateReserveCard } from "../../hooks/stateSetters";
import { hasMaxReserved } from "./ActionMethods/reserveCardActions";
import { hasMaxChips } from "./ActionMethods/getChipsActions";
import { v4 } from "uuid";
import { CardData, PlayerData } from "../../util/types"
import { PlayerProps } from "../../util/propTypes";
import Card from "../Card/Card";
export default function Player({ player, state, setState }: PlayerProps) {