Commit ac98c53c authored by Benjamín Balun's avatar Benjamín Balun
Browse files

added image url for one of the pokeballs

parent 54c4839e
......@@ -9,7 +9,13 @@ export type Pokeball = {
};
export const pokeballs: Pokeball[] = [
{ id: 1, name: 'Pokeball 1', price: 12, catches: 1 },
{
id: 1,
name: 'Pokeball 1',
price: 12,
catches: 1,
image: 'https://www.downloadclipart.net/large/pokeball-png-photos.png'
},
{ id: 2, name: 'Pokeball 2', price: 48, catches: 2 },
{ id: 3, name: 'Pokeball 3', price: 19, catches: 3 }
];
......
......@@ -20,7 +20,7 @@ const ItemCard = ({
item.image ? (
<img alt={item.name} src={item.image} />
) : (
<QuestionCircleOutlined style={{ fontSize: '150px' }} />
<QuestionCircleOutlined style={{ fontSize: '190px' }} />
)
}
>
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment