patpizio commited on
Commit
cf31e9b
1 Parent(s): 61c5e0e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -1
app.py CHANGED
@@ -1 +1,6 @@
1
- import streamlit as st
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+ text = st.text_area('Enter some text!')
4
+
5
+ if text:
6
+ st.write(text)