This commit is contained in:
2025-05-06 02:13:23 +08:00
commit 22baba9e7b
52 changed files with 13258 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
"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`
}