File size: 198 Bytes
831e906
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
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}")