import { SimpleGrid } from '@metafam/ds'; import { PlayerTile } from '#components/Player/PlayerTile'; import { Player } from '#graphql/autogen/hasura-sdk'; type Props = { players: Player[]; showSeasonalXP?: boolean; }; export const PlayerList: React.FC = ({ players, showSeasonalXP = false, }) => ( {players.map((player, idx) => ( ))} );