Update app.py
Browse files
app.py
CHANGED
@@ -144,6 +144,9 @@ def main():
|
|
144 |
4. Repeat this process for all elements.
|
145 |
""")
|
146 |
|
|
|
|
|
|
|
147 |
# Run the app
|
148 |
if __name__ == "__main__":
|
149 |
main()
|
|
|
144 |
4. Repeat this process for all elements.
|
145 |
""")
|
146 |
|
147 |
+
image = Image.open("selection-short.png") # Path to your image file
|
148 |
+
st.image(image, use_container_width=True)
|
149 |
+
|
150 |
# Run the app
|
151 |
if __name__ == "__main__":
|
152 |
main()
|