Spaces:
Sleeping
Sleeping
| import streamlit as st | |
| def app(): | |
| st.title("Test Page") | |
| st.write("If you can see this, the Streamlit app is working correctly!") | |
| if __name__ == "__main__": | |
| app() | |