import React from 'react'; import { Text } from 'rebass'; import { Flex } from 'reflexbox'; export const PlayerList = ({ players }) => (
{players.map(player => { return ( {player.displayName} ({player.username}) ); })}
);