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)