ricklon commited on
Commit
752f1d9
·
verified ·
1 Parent(s): ad29aca

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -0
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']}")