Canton dApp Booster
    Preparing search index...

    Props for TokenListProvider. tokens is read by identity, so hoist the array or memoise it; a fresh one on every render rebuilds the lookup map.

    <TokenListProvider tokens={mockTokens}>{children}</TokenListProvider>
    
    interface TokenListProviderProps {
        children: ReactNode;
        tokens: readonly Token[];
    }
    Index
    children: ReactNode
    tokens: readonly Token[]