Danielrahmai1991 commited on
Commit
be7d622
1 Parent(s): ed9cee9

Create app.py

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