8 lines
261 B
TypeScript
8 lines
261 B
TypeScript
"use client"
|
|
|
|
// Totally unnecessary hook, but it's a good example of how to use a hook in a custom registry.
|
|
|
|
export function usePokemonImage(number: number) {
|
|
return `https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/${number}.png`
|
|
}
|