Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
|
3 |
+
st.set_page_config(page_title="My First Streamlit App", layout="centered")
|
4 |
+
|
5 |
+
st.title("🚀 Hello from Streamlit on Hugging Face!")
|
6 |
+
st.write("This is a minimal Streamlit app deployed using Hugging Face Spaces.")
|
7 |
+
st.success("You're all set to build more!")
|