import React from "react"; import { View, Text, Button, Image, StyleSheet } from "react-native"; interface PlayerSelectorProps { playerCount: number; setPlayerCount: React.Dispatch>; } const PlayerSelector: React.FC = ({ playerCount, setPlayerCount, }) => { const increasePlayers = () => { if (playerCount < 8) setPlayerCount(playerCount + 1); }; const decreasePlayers = () => { if (playerCount > 2) setPlayerCount(playerCount - 1); }; return ( Select Number of Players: {playerCount}