A react component to show any pokemon from different generations.
$ npm install --save lyef-pokemon
Remember to import the styles on css/main.css
folder to your project.
import Pokemon from 'lyef-pokemon';
...
render() {
return (
<Pokemon name="pikachu" gen="black-white" label />
);
}
...
name
(string) - pokemon name - requiredgen
(string) - generation ['sun-moon', 'xy', 'black-white', 'diamond-pearl', 'emerald', 'silver', 'green'] - defaults toxy
label
(bool) - show pokemon name
We've developed this component using the following boilerplate: lyef-react-component.
To know more about the architecture or if you want to contribute with this component: Contributing Documentation.