Maham930 commited on
Commit
bb9be8b
·
verified ·
1 Parent(s): 017a188

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -0
app.py CHANGED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+ st.title("🚀 Streamlit App (converted from Gradio)")
4
+
5
+ name = st.text_input("Enter your name:")
6
+ if st.button("Say Hello"):
7
+ st.success(f"Hello {name}!")