Skip to content

Commit f1cf960

Browse files
committed
Fix variable name
1 parent 3de353e commit f1cf960

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/simple/app.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from shiny import *
22

3-
ui = ui.page_fluid(
3+
app_ui = ui.page_fluid(
44
ui.input_slider("n", "N", 0, 100, 20),
55
ui.output_text_verbatim("txt", placeholder=True),
66
)
@@ -23,4 +23,4 @@ async def txt():
2323
return f"n*2 is {val}, session id is {session.id}"
2424

2525

26-
app = App(ui, server)
26+
app = App(app_ui, server)

0 commit comments

Comments
 (0)