Spaces:
Runtime error
Runtime error
File size: 326 Bytes
bda8e7d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import solara
@solara.component
def Page():
with solara.Column(align="center"):
markdown = """
## Solara-Leafmap Toy
### Introduction
**A quick [Solara](https://github.com/widgetti/solara) to showcase user interactions in leafmap**
"""
solara.Markdown(markdown)
|