File size: 274 Bytes
f652093
 
 
 
dfe3c39
 
 
 
f652093
 
 
 
 
 
 
 
 
 
ee83c82
f652093
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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()