diff --git a/src/Locations/ui/CasinoLocation.tsx b/src/Locations/ui/CasinoLocation.tsx index 633049aa0..326a9f3ff 100644 --- a/src/Locations/ui/CasinoLocation.tsx +++ b/src/Locations/ui/CasinoLocation.tsx @@ -4,6 +4,7 @@ * This subcomponent renders all of the buttons for training at the gym */ import * as React from "react"; +import Button from "@mui/material/Button"; import { Blackjack } from "../../Casino/Blackjack"; import { CoinFlip } from "../../Casino/CoinFlip"; import { Roulette } from "../../Casino/Roulette"; @@ -47,13 +48,13 @@ export class CasinoLocation extends React.Component { renderGames(): React.ReactNode { return ( <> - this.updateGame(GameType.Coin)} text={"Play coin flip"} /> +
- this.updateGame(GameType.Slots)} text={"Play slots"} /> +
- this.updateGame(GameType.Roulette)} text={"Play roulette"} /> +
- this.updateGame(GameType.Blackjack)} text={"Play blackjack"} /> + ); }