Spaces:
Running
Running
File size: 198 Bytes
e5b3236 |
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}")
|