mestreamlit / AppZoo.py
yuanjie
update
0153acf
raw
history blame
282 Bytes
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()