Files
annescribe/webapp/home.py
T
2024-12-29 21:27:11 +01:00

23 lines
547 B
Python

import streamlit as st
from webapp.task_list import render_task_list
def render_home(container,
app_config: dict,
authenticator):
"""
Render the home page
:param container: container object to place the content in
:param app_config: app configuration
:return: None
"""
with container.container():
st.title('Annescribe Home')
st.write("Welcome to AnneScribe!")
authenticator.logout()
# render task list
render_task_list(container, app_config)