NCTC_OSINT / components /show_source.py
NCTCMumbai's picture
Upload 24 files
e5b3236 verified
raw
history blame
198 Bytes
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}")