From 3aacab504b0eaf91c982296a49221013f2fe379b Mon Sep 17 00:00:00 2001 From: Olivier Gagnon Date: Sat, 25 Sep 2021 15:42:37 -0400 Subject: [PATCH] convert casino to mui --- src/Locations/ui/CasinoLocation.tsx | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) 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"} /> + ); }