Spaces:
Running
Running
File size: 468 Bytes
1b68c20 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
import solara
@solara.component
def Page():
with solara.Column(align="center"):
markdown = """
## A Solara web app for DuckDB
This is a Solara web app for DuckDB. Click on the menu above to see the different examples.
<br>
Source code: <https://github.com/opengeos/duckdb-solara>

"""
solara.Markdown(markdown)
|