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()