From 243e06b235e9d847dc5d21f5dbd384bf54e429a8 Mon Sep 17 00:00:00 2001 From: _ William Mburu <69644126+SirWilliam254@users.noreply.github.com> Date: Sat, 2 Nov 2024 09:31:59 +0300 Subject: [PATCH] Update title on streamlit_app.py Added a title for better user experience. --- streamlit_app.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/streamlit_app.py b/streamlit_app.py index 7a0ed1272052..ce577cd0ea53 100644 --- a/streamlit_app.py +++ b/streamlit_app.py @@ -12,6 +12,8 @@ In the meantime, below is an example of what you can do with just a few lines of code: """ +# Title of the app +st.title("Spiral Visualization") num_points = st.slider("Number of points in spiral", 1, 10000, 1100) num_turns = st.slider("Number of turns in spiral", 1, 300, 31)