Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -264,6 +264,11 @@ def Page():
|
|
| 264 |
"Click a candidate to append it and highlight its **semantic neighborhood**. "
|
| 265 |
"Hover a candidate to preview its neighborhood."
|
| 266 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 267 |
|
| 268 |
solara.InputText("Enter text", value=text_rx, continuous_update=True, style={"minWidth":"520px"})
|
| 269 |
solara.Markdown(f"*{notice_rx.value}*")
|
|
|
|
| 264 |
"Click a candidate to append it and highlight its **semantic neighborhood**. "
|
| 265 |
"Hover a candidate to preview its neighborhood."
|
| 266 |
)
|
| 267 |
+
|
| 268 |
+
solara.Button(
|
| 269 |
+
"TEST: click me",
|
| 270 |
+
on_click=lambda *args: print("TEST BUTTON CLICKED"),
|
| 271 |
+
)
|
| 272 |
|
| 273 |
solara.InputText("Enter text", value=text_rx, continuous_update=True, style={"minWidth":"520px"})
|
| 274 |
solara.Markdown(f"*{notice_rx.value}*")
|