abdulsamad commited on
Commit
859373b
·
1 Parent(s): 7778b04

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -1,6 +1,6 @@
1
  import streamlit as st
2
  import pandas as pd
3
 
4
- st.write("This App will check the payee name in the UBL cheque")
5
- st.text_area('Text to translate')
6
 
 
1
  import streamlit as st
2
  import pandas as pd
3
 
4
+ uploaded_file = st.file_uploader("Choose a file")
5
+ st.text_area(uploaded_file)
6