TheJimmy commited on
Commit
646f404
·
verified ·
1 Parent(s): ecfb015

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -32,7 +32,10 @@ st.header(":books: Book Identifier")
32
 
33
  k = 10
34
  with st.form(key='my_form'):
35
- sen1 = st.text_area("Book description:")
 
 
 
36
  submit_button = st.form_submit_button(label='Submit')
37
 
38
  if submit_button:
 
32
 
33
  k = 10
34
  with st.form(key='my_form'):
35
+ sen1 = st.text_area(
36
+ label = "Book description:",
37
+ placeholder = "Write a brief description of your book here"
38
+ )
39
  submit_button = st.form_submit_button(label='Submit')
40
 
41
  if submit_button: