Borya-Goldarb commited on
Commit
495d813
·
verified ·
1 Parent(s): 162681a

Create pages/page_1.py

Browse files
Files changed (1) hide show
  1. pages/page_1.py +9 -0
pages/page_1.py ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+
4
+ def main():
5
+ if st.button("Home"):
6
+ st.switch_page("app.py")
7
+
8
+ if __name__ == "__main__":
9
+ main()