From 4cebf35cf086b5a04f22983d84f14370362dd936 Mon Sep 17 00:00:00 2001 From: Jason Zhu Date: Mon, 8 May 2023 23:27:44 +1000 Subject: [PATCH] Added bulbasaur into PokemonCard storybook --- src/components/PokemonCard/PokemonCard.stories.tsx | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/components/PokemonCard/PokemonCard.stories.tsx b/src/components/PokemonCard/PokemonCard.stories.tsx index a3cc72b..c4158e3 100644 --- a/src/components/PokemonCard/PokemonCard.stories.tsx +++ b/src/components/PokemonCard/PokemonCard.stories.tsx @@ -32,3 +32,12 @@ Charizard.args = { image: charizard_svg, types: ['fire', 'flying'], }; + +export const Bulbasaur = Template.bind({}); +Bulbasaur.args = { + id: 1, + name: 'bulbasaur', + image: + 'https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/other/dream-world/1.svg', + types: ['grass', 'poison'], +};