Skip to content

404

Page not found. Check the URL or try using the search bar.
notebook.ipynb
[1]:
from mercury import TextInput, Select, Markdown
[2]:
greet = Select(label="Greetings", 
               choices=["Hello", "Cześć", "Ciao"])
name = TextInput(label="What is your name?")
[3]:
Markdown(f"""
## {greet.value} {name.value}! 👋
Easily share your discoveries with Mercury 🎉
""")
localhost:8888/app

Hello Aleksandra! 👋

Easily share your discoveries with Mercury 🎉