ozzyable's picture
Added files to test i/o
8a3759d
raw
history blame
181 Bytes
import streamlit as st
transactions = st.text_area("Enter your transactions").split(',').strip()
if st.button("Reset", type="primary"):
st.write(f"transaction: {transactions}")