Skip to content

Commit

Permalink
fix: no main return in example
Browse files Browse the repository at this point in the history
Co-authored-by: Maarten Breddels <[email protected]>
  • Loading branch information
rileythai and maartenbreddels authored Feb 10, 2025
1 parent 9272987 commit cb23a9c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
def Page():
all_species = df["species"].unique().tolist()
species = solara.use_reactive(all_species[0])
with solara.Div() as main:
with solara.Div():
solara.Select(label="Species", value=species, values=all_species)
dff = df[df["species"] == species.value]

Expand Down

0 comments on commit cb23a9c

Please sign in to comment.