JeCabrera's picture
Upload 13 files
48e2ae8 verified
raw
history blame
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)