ebook-gen / components /show_source.py
pragneshbarik's picture
major refactoring, web crawl in now multithreaded
e51667a
import streamlit as st
def show_source(links):
# Expander component to show source
with st.expander("Show source"):
for i, link in enumerate(links):
st.info(f"{link}")