test
Browse files
app.py
CHANGED
@@ -61,14 +61,12 @@ with st.sidebar:
|
|
61 |
# Parse the file
|
62 |
pass
|
63 |
|
64 |
-
|
65 |
-
global uploaded_file
|
66 |
-
col1, col2 = st.columns(2)
|
67 |
|
68 |
-
|
69 |
-
|
70 |
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
|
|
61 |
# Parse the file
|
62 |
pass
|
63 |
|
64 |
+
col1, col2 = st.columns(2)
|
|
|
|
|
65 |
|
66 |
+
with col1:
|
67 |
+
st.write('testing')
|
68 |
|
69 |
+
with col2:
|
70 |
+
if uploaded_file is not None:
|
71 |
+
# Display the pdf
|
72 |
+
pdf_viewer(input=uploaded_file, width=700)
|