Keira James
switch to simple app
99256f5
raw
history blame
231 Bytes
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}")