File size: 231 Bytes
7c6b19a
 
99256f5
 
80e7abb
99256f5
 
d19bd0a
99256f5
38afc93
99256f5
7c6b19a
1
2
3
4
5
6
7
8
9
10
11
12
13
import streamlit as st

# Title of the app
st.title("Simple Streamlit App")

# User input for text
user_input = st.text_input("Enter some text:")

# Display the input text
if user_input:
    st.write(f"You entered: {user_input}")