Maker-story / src /components /sidebar.py
JeCabrera's picture
Upload 11 files
e9e4554 verified
raw
history blame contribute delete
290 Bytes
import streamlit as st
def render_sidebar():
with st.sidebar:
st.title("Story Genius Maker")
st.markdown("---")
with open("manual.md", "r", encoding="utf-8") as file:
manual_content = file.read()
st.markdown(manual_content)