Py.Cafe

iisakkirotko/

solara-simple-greeting

Solara Simple Greeting

DocsPricing
  • app.py
  • requirements.txt
app.py
1
2
3
4
5
6
7
8
9
10
11
import solara


back = solara.reactive("")


@solara.component
def Page():
    solara.Text("Computer: Hello there!")
    solara.InputText("Say something", value=back, continuous_update=True)
    solara.Text(f"Me: {back.value}")