Skip to content

Commit

Permalink
Refactor(app): elaborate the sidebar example
Browse files Browse the repository at this point in the history
  • Loading branch information
mykolaskrynnyk committed Sep 16, 2024
1 parent 74702d7 commit 1a726ac
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions pages/standard.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,13 @@
st.subheader("Sidebar Title")
with st.container():
st.info("There could be your content.", icon=":material/lightbulb:")
search = st.text_input("Search")
tags = st.multiselect("Tags", OPTIONS)
clicked = st.button("Search", type="primary")
if clicked:
st.subheader("Search Parameters")
st.json({"search": search, "tags": tags})


with tab5:
st.title("Title")
Expand Down

0 comments on commit 1a726ac

Please sign in to comment.