Karley8 commited on
Commit
80ff6ba
·
verified ·
1 Parent(s): 3bb0b67

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -0
app.py ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+ st.title("Simple Streamlit App")
4
+
5
+ user_input = st.text_input("Enter your name:")
6
+ if user_input:
7
+ st.write(f"Hello, {user_input}! Welcome to the app.")