wikifit / src /test_app.py
PhanindraVarma's picture
Upload 24 files
db020d5 verified
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()