cdleong commited on
Commit
8dc649a
·
1 Parent(s): e66a539

add langcodes and text area

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -1,5 +1,8 @@
1
  import streamlit as st
 
2
 
3
 
4
  x = st.slider('Select a value')
5
- st.write(x, 'squared is', x * x)
 
 
 
1
  import streamlit as st
2
+ from langcodes import *
3
 
4
 
5
  x = st.slider('Select a value')
6
+ st.write(x, 'squared is', x * x)
7
+
8
+ st.text_area("Text", default_value, height = 275)