File size: 295 Bytes
48fc275
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
"""About tab rendering functionality"""

from config import app_config
import utils
import streamlit as st


###
### INTERNAL FUNCTIONS
###


###
### MAIN FLOW, entry point
###
def render():
    """Render the this page"""
    st.markdown(utils.read(app_config.md_about), unsafe_allow_html=True)