Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -7,6 +7,8 @@ def main():
|
|
| 7 |
|
| 8 |
with st.form("text_field"):
|
| 9 |
text = st.text_area('enter some Japanese texts:')
|
|
|
|
|
|
|
| 10 |
# clicked==True only when the button is clicked
|
| 11 |
clicked = st.form_submit_button("Submit")
|
| 12 |
if clicked:
|
|
|
|
| 7 |
|
| 8 |
with st.form("text_field"):
|
| 9 |
text = st.text_area('enter some Japanese texts:')
|
| 10 |
+
text = st.text_area('''For example : 私はタイ人です = I am Thai
|
| 11 |
+
我が国の首相は最低だ! = our prime minister sucks!''')
|
| 12 |
# clicked==True only when the button is clicked
|
| 13 |
clicked = st.form_submit_button("Submit")
|
| 14 |
if clicked:
|