TeamHaltmannSusanaHWCEO's picture
Update app.py
800df2b
raw
history blame contribute delete
313 Bytes
import streamlit as st
#Add a title and some text
st.title("Making Meme Ideas")
st.text("Meme Tesla Bot v0.1")
#Get some input from the user
idea = st.text_input("What's your meme idea?")
#Add a button
if st.button("Make my meme!"):
#Do something with the input
st.write("Here's your meme:", idea)