import { HStack, Text } from '@metafam/ds'; import React from 'react'; import { FaMedal } from 'react-icons/fa'; import { ProfileSection } from '../../ProfileSection'; // TODO Fake data type Props = { onRemoveClick: () => void }; export const PlayerAchievements: React.FC = ({ onRemoveClick }) => { const [show, setShow] = React.useState(false); const fakeData = [ 'Founding Father of MetaGame', 'Summoner of Meta Fam', 'Dragon Quests Quest', ]; return ( {(fakeData || []).slice(0, show ? 999 : 3).map((title) => ( {title} ))} {(fakeData || []).length > 3 && ( setShow(!show)} > View {show ? 'less' : 'all'} )} ); };