Skip to content

Commit 0fe6947

Browse files
committed
docs update code in markdown_2
1 parent 8bec632 commit 0fe6947

File tree

1 file changed

+2
-2
lines changed
  • solara/website/pages/documentation/components/output

1 file changed

+2
-2
lines changed

solara/website/pages/documentation/components/output/markdown.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,12 @@ def Page():
3939
markdown_text, set_markdown_text = solara.use_state(markdown_initial)
4040
# with solara.GridFixed(columns=2) as main:
4141
with solara.HBox(grow=True) as main:
42-
with solara.VBox():
42+
with solara.Column():
4343
solara.Markdown("# Input text")
4444
with solara.Padding(2):
4545
with solara.v.Sheet(elevation=2):
4646
solara.v.Textarea(v_model=markdown_text, on_v_model=set_markdown_text, rows=30)
47-
with solara.VBox():
47+
with solara.Column():
4848
solara.Markdown("# Renders like")
4949
with solara.Padding(2):
5050
with solara.v.Sheet(elevation=2):

0 commit comments

Comments
 (0)