import { Card, CardBody, Heading, HStack, Image, Text } from '@chakra-ui/react' import React from 'react' import { Game } from '../hooks/useGames' import getCroppedImageUrl from '../services/image-url' import CriticScore from './CriticScore' import Emoji from './Emoji' import PlatformIconList from './PlatformIconList' interface Props { game: Game } const GameCard = ({ game }: Props) => { return ( p.platform)} /> {game.name} ) } export default GameCard