Update app.py
Browse files
app.py
CHANGED
|
@@ -5,3 +5,7 @@ st.set_page_config(page_title="My Multi-Page App", page_icon=":rocket:", layout=
|
|
| 5 |
|
| 6 |
# The actual navigation and page content are handled by Streamlit's automatic page discovery
|
| 7 |
st.write("App!")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
|
| 6 |
# The actual navigation and page content are handled by Streamlit's automatic page discovery
|
| 7 |
st.write("App!")
|
| 8 |
+
|
| 9 |
+
# Displaying shared data from Page 1
|
| 10 |
+
if 'shared_data' in st.session_state:
|
| 11 |
+
st.write(f"Data from Page 1: {st.session_state['shared_data']}")
|