PeterPinetree commited on
Commit
620b9c2
·
verified ·
1 Parent(s): bec627d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -0
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}*")