Spaces:
Runtime error
Runtime error
lfernandopg
commited on
Commit
•
68f9cb7
1
Parent(s):
3cf8dc5
Update app.py
Browse files
app.py
CHANGED
@@ -8,14 +8,14 @@ if file is not None:
|
|
8 |
col1, col2, col3 = st.beta_columns([1,6,1])
|
9 |
|
10 |
with col1:
|
11 |
-
|
12 |
|
13 |
with col2:
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
|
18 |
with col3:
|
19 |
-
|
20 |
|
21 |
|
|
|
8 |
col1, col2, col3 = st.beta_columns([1,6,1])
|
9 |
|
10 |
with col1:
|
11 |
+
st.write("")
|
12 |
|
13 |
with col2:
|
14 |
+
image = Image.open(file)
|
15 |
+
st.markdown('<p style="text-align: center;">Image</p>',unsafe_allow_html=True)
|
16 |
+
st.image(image,width=300)
|
17 |
|
18 |
with col3:
|
19 |
+
st.write("")
|
20 |
|
21 |
|