prakharg24 commited on
Commit
1edfb78
·
verified ·
1 Parent(s): fef31e4

Create ica.py

Browse files
Files changed (1) hide show
  1. pages/ica.py +8 -0
pages/ica.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+ from utils.navigation import go_to
3
+
4
+ def render():
5
+ st.title("Multiplicity")
6
+ st.write("The ICA page is currently empty. Add content here.")
7
+ if st.button("Back to Main Page"):
8
+ go_to("main")