rimjhimittal commited on
Commit
10c94eb
·
verified ·
1 Parent(s): 745d50e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -1
app.py CHANGED
@@ -1,3 +1,9 @@
1
  import streamlit as st
2
  st.set_page_config(layout="wide")
3
- st.write("Content For Landing Page Goes Here")
 
 
 
 
 
 
 
1
  import streamlit as st
2
  st.set_page_config(layout="wide")
3
+ st.write("Content For Landing Page Goes Here")
4
+ def main():
5
+ st.markdown("hi")
6
+
7
+
8
+ if __name__ == "__main__":
9
+ main()