File size: 290 Bytes
48e2ae8 |
1 2 3 4 5 6 7 8 9 10 |
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) |