import { Container, Divider, MetaTag, Wrap } from '@metafam/ds'; import { PlayerFeature } from 'components/Player/PlayerFeature'; import { PlayerFragmentFragment } from 'graphql/autogen/types'; import React from 'react'; type Props = { player: PlayerFragmentFragment }; export const PlayerFeatures: React.FC = ({ player }) => { return ( {player.rank && ( )} {player.rank && ( {player.rank} )} {player.box_profile?.location && ( )} {player.box_profile?.location && ( )} {/* */} {/* */} ); };