File size: 422 Bytes
769af1a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
"""About tab rendering functionality"""
import streamlit as st
from config import app_config
###
### INTERNAL FUNCTIONS
###
def __section(header):
"""Render the section on this page"""
st.header(header)
with open(app_config.readme_file_path, "r") as f:
about = f.read()
st.markdown(about, unsafe_allow_html=True)
###
### MAIN FLOW, entry point
###
def render():
__section("About The App")
|