Spaces:
Runtime error
Runtime error
File size: 273 Bytes
f652093 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
import streamlit as st
def run():
st.set_page_config(
page_title="Hello",
page_icon="π",
)
st.write("# Welcome to AppZoo! π")
st.markdown(
"""
> εΊη¨ιε
"""
)
if __name__ == "__main__":
run()
|