Skip to content

Commit 381764f

Browse files
Update shiny/api-examples/Module/app-express.py
Co-authored-by: Carson Sievert <[email protected]>
1 parent 50f62b8 commit 381764f

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

shiny/api-examples/Module/app-express.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,9 @@ def counter(input, output, session, label, starting_value: int = 0):
1212
ui.h2(f"This is {label}")
1313
ui.input_action_button("button", f"{label}")
1414

15-
with ui.div():
16-
@render.text
17-
def out():
18-
return f"Click count is {count()}"
15+
@render.text
16+
def out():
17+
return f"Click count is {count()}"
1918

2019
@reactive.effect
2120
@reactive.event(input.button)

0 commit comments

Comments
 (0)