diff --git a/app/index.tsx b/app/index.tsx index 5183247..2f107b4 100644 --- a/app/index.tsx +++ b/app/index.tsx @@ -2,10 +2,13 @@ import React, { useState } from "react"; import { ScrollView, Text, Alert, Button } from "react-native"; import PlayerSelector from "@/components/PlayerSelector"; import BuyInSelector from "@/components/BuyInSelector"; +import ChipsSelector from "@/components/ChipsSelector"; const IndexScreen = () => { const [playerCount, setPlayerCount] = useState(2); const [buyInAmount, setBuyInAmount] = useState(null); + const [numberOfChips, setNumberOfChips] = useState(5); + const [totalChipsCount, setTotalChipsCount] = useState([]); const handleSave = () => { if (buyInAmount === null) { @@ -26,6 +29,13 @@ const IndexScreen = () => { + +