Prakash N commited on
Commit
4cbf692
1 Parent(s): 8a52da0

added header to col1

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -28,7 +28,7 @@ st.markdown(""" #### LorSor helps you through a simple 3 stage process.
28
  col1, col2 = st.columns(2)
29
 
30
  with col1:
31
- col1.write("This is col1")
32
  x = st.slider('Select a value')
33
  st.write(x, ' squared is', x * x)
34
 
 
28
  col1, col2 = st.columns(2)
29
 
30
  with col1:
31
+ col1.header("This is col1")
32
  x = st.slider('Select a value')
33
  st.write(x, ' squared is', x * x)
34