streamlit-log / app.py
cbensimon's picture
cbensimon HF Staff
Update app.py
197f3ea
raw
history blame contribute delete
107 Bytes
import streamlit as st
x = st.text_input('This will be console logged')
st.write('Message :', x)
print(x)