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

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -0
app.py CHANGED
@@ -5,7 +5,11 @@ 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!")
 
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']}")
 
 
 
5
 
6
  # The actual navigation and page content are handled by Streamlit's automatic page discovery
7
  st.write("App!")
8
+ st.write("Testing multipage")
9
 
10
+ st.write("If Data from Page1:")
11
  # Displaying shared data from Page 1
12
  if 'shared_data' in st.session_state:
13
  st.write(f"Data from Page 1: {st.session_state['shared_data']}")
14
+
15
+