Create ica.py
Browse files- 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")
|