Unbreak demo app (#2623)
Apparently this was converted before code_block got moved back to the top level.
This commit is contained in:
parent
791fcc9b41
commit
44000af633
@ -306,7 +306,7 @@ def datatable_page() -> rx.Component:
|
|||||||
),
|
),
|
||||||
rx.chakra.tab_panels(
|
rx.chakra.tab_panels(
|
||||||
rx.chakra.tab_panel(
|
rx.chakra.tab_panel(
|
||||||
rx.chakra.code_block(
|
rx.code_block(
|
||||||
code_show,
|
code_show,
|
||||||
language="python",
|
language="python",
|
||||||
show_line_numbers=True,
|
show_line_numbers=True,
|
||||||
@ -316,7 +316,7 @@ def datatable_page() -> rx.Component:
|
|||||||
padding_y=".25em",
|
padding_y=".25em",
|
||||||
),
|
),
|
||||||
rx.chakra.tab_panel(
|
rx.chakra.tab_panel(
|
||||||
rx.chakra.code_block(
|
rx.code_block(
|
||||||
data_show,
|
data_show,
|
||||||
language="python",
|
language="python",
|
||||||
show_line_numbers=True,
|
show_line_numbers=True,
|
||||||
@ -326,7 +326,7 @@ def datatable_page() -> rx.Component:
|
|||||||
padding_y=".25em",
|
padding_y=".25em",
|
||||||
),
|
),
|
||||||
rx.chakra.tab_panel(
|
rx.chakra.tab_panel(
|
||||||
rx.chakra.code_block(
|
rx.code_block(
|
||||||
state_show,
|
state_show,
|
||||||
language="python",
|
language="python",
|
||||||
show_line_numbers=True,
|
show_line_numbers=True,
|
||||||
@ -336,7 +336,7 @@ def datatable_page() -> rx.Component:
|
|||||||
padding_y=".25em",
|
padding_y=".25em",
|
||||||
),
|
),
|
||||||
rx.chakra.tab_panel(
|
rx.chakra.tab_panel(
|
||||||
rx.chakra.code_block(
|
rx.code_block(
|
||||||
darkTheme_show,
|
darkTheme_show,
|
||||||
language="python",
|
language="python",
|
||||||
show_line_numbers=True,
|
show_line_numbers=True,
|
||||||
|
@ -150,7 +150,7 @@ def forms_page() -> rx.Component:
|
|||||||
),
|
),
|
||||||
rx.chakra.tab_panels(
|
rx.chakra.tab_panels(
|
||||||
rx.chakra.tab_panel(
|
rx.chakra.tab_panel(
|
||||||
rx.chakra.code_block(
|
rx.code_block(
|
||||||
forms_1_code,
|
forms_1_code,
|
||||||
language="python",
|
language="python",
|
||||||
show_line_numbers=True,
|
show_line_numbers=True,
|
||||||
@ -160,7 +160,7 @@ def forms_page() -> rx.Component:
|
|||||||
padding_y=".25em",
|
padding_y=".25em",
|
||||||
),
|
),
|
||||||
rx.chakra.tab_panel(
|
rx.chakra.tab_panel(
|
||||||
rx.chakra.code_block(
|
rx.code_block(
|
||||||
forms_1_state,
|
forms_1_state,
|
||||||
language="python",
|
language="python",
|
||||||
show_line_numbers=True,
|
show_line_numbers=True,
|
||||||
@ -223,7 +223,7 @@ def forms_page() -> rx.Component:
|
|||||||
),
|
),
|
||||||
rx.chakra.tab_panels(
|
rx.chakra.tab_panels(
|
||||||
rx.chakra.tab_panel(
|
rx.chakra.tab_panel(
|
||||||
rx.chakra.code_block(
|
rx.code_block(
|
||||||
forms_2_code,
|
forms_2_code,
|
||||||
language="python",
|
language="python",
|
||||||
show_line_numbers=True,
|
show_line_numbers=True,
|
||||||
@ -233,7 +233,7 @@ def forms_page() -> rx.Component:
|
|||||||
padding_y=".25em",
|
padding_y=".25em",
|
||||||
),
|
),
|
||||||
rx.chakra.tab_panel(
|
rx.chakra.tab_panel(
|
||||||
rx.chakra.code_block(
|
rx.code_block(
|
||||||
forms_2_state,
|
forms_2_state,
|
||||||
language="python",
|
language="python",
|
||||||
show_line_numbers=True,
|
show_line_numbers=True,
|
||||||
|
@ -144,7 +144,7 @@ def graphing_page() -> rx.Component:
|
|||||||
),
|
),
|
||||||
rx.chakra.tab_panels(
|
rx.chakra.tab_panels(
|
||||||
rx.chakra.tab_panel(
|
rx.chakra.tab_panel(
|
||||||
rx.chakra.code_block(
|
rx.code_block(
|
||||||
graph_1_code,
|
graph_1_code,
|
||||||
language="python",
|
language="python",
|
||||||
show_line_numbers=True,
|
show_line_numbers=True,
|
||||||
@ -154,7 +154,7 @@ def graphing_page() -> rx.Component:
|
|||||||
padding_y=".25em",
|
padding_y=".25em",
|
||||||
),
|
),
|
||||||
rx.chakra.tab_panel(
|
rx.chakra.tab_panel(
|
||||||
rx.chakra.code_block(
|
rx.code_block(
|
||||||
data_1_show,
|
data_1_show,
|
||||||
language="python",
|
language="python",
|
||||||
show_line_numbers=True,
|
show_line_numbers=True,
|
||||||
@ -217,7 +217,7 @@ def graphing_page() -> rx.Component:
|
|||||||
),
|
),
|
||||||
rx.chakra.tab_panels(
|
rx.chakra.tab_panels(
|
||||||
rx.chakra.tab_panel(
|
rx.chakra.tab_panel(
|
||||||
rx.chakra.code_block(
|
rx.code_block(
|
||||||
graph_2_code,
|
graph_2_code,
|
||||||
language="python",
|
language="python",
|
||||||
show_line_numbers=True,
|
show_line_numbers=True,
|
||||||
@ -227,7 +227,7 @@ def graphing_page() -> rx.Component:
|
|||||||
padding_y=".25em",
|
padding_y=".25em",
|
||||||
),
|
),
|
||||||
rx.chakra.tab_panel(
|
rx.chakra.tab_panel(
|
||||||
rx.chakra.code_block(
|
rx.code_block(
|
||||||
graph_2_state,
|
graph_2_state,
|
||||||
language="python",
|
language="python",
|
||||||
show_line_numbers=True,
|
show_line_numbers=True,
|
||||||
|
Loading…
Reference in New Issue
Block a user