mwe11s commited on
Commit
efc71dd
·
1 Parent(s): 8e3c06c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +21 -3
app.py CHANGED
@@ -1,5 +1,23 @@
1
  import streamlit as st
2
- st.set_page_config(layout="wide")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
 
4
- x = st.slider('Select a value')
5
- st.write(x, 'squared is', x * x)
 
1
  import streamlit as st
2
+ st.set_page_config(
3
+ layout="wide",
4
+ initial_sidebar_state="expanded")
5
+
6
+ def main():
7
+ cs_sidebar()
8
+ cs_body()
9
+
10
+
11
+ # Sidebar
12
+ def cs_sidebar():
13
+ st.sidebar.header('Sessions')
14
+
15
+ # Body
16
+ def cs_body():
17
+ col1, col2 = st.columns([3,1])
18
+ col1.title('ChatOps')
19
+ col2.title('Enviornment:')
20
+
21
+
22
+
23