Reads the token list a TokenListProvider supplies. Reach for it where a screen renders its own token UI; <TokenInput onTokenSelect> already reads it itself.
<TokenInput onTokenSelect>
with no TokenListProvider above it.
const { tokens } = useTokenList()tokens.map((token) => <TokenRow key={token.id} token={token} />) Copy
const { tokens } = useTokenList()tokens.map((token) => <TokenRow key={token.id} token={token} />)
Reads the token list a TokenListProvider supplies. Reach for it where a screen renders its own token UI;
<TokenInput onTokenSelect>already reads it itself.