mestreamlit / AppZoo.py
yuanjie
update
ee83c82
raw
history blame
274 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()