Skip to content

Instantly share code, notes, and snippets.

@vnegi10
Created January 27, 2024 16:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vnegi10/a3b7d6a7015aa8bf791297550d505294 to your computer and use it in GitHub Desktop.
Save vnegi10/a3b7d6a7015aa8bf791297550d505294 to your computer and use it in GitHub Desktop.
def nft_dropdown():
dropdown = dcc.Dropdown(id = 'NFT_ID',
options = [
{'label': 'bitcoin-frogs', 'value':'bitcoin-frogs' },
{'label': 'mutant-ape-yacht-club', 'value':'mutant-ape-yacht-club'},
{'label': 'mad-lads', 'value':'mad-lads'},
{'label': 'cryptopunks', 'value': 'cryptopunks'},
{'label': 'the-crop-collective', 'value': 'the-crop-collective'}
],
value = 'pudgy-penguins')
return dropdown
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment