Image_Classifier_with_CNN / src /streamlit_app.py
iBrokeTheCode's picture
chore: Test main app
8a45f7a
raw
history blame
149 Bytes
import streamlit as st
st.title("Hello")
name = st.text_input("Your name:")
if st.button("Submit"):
st.text(f"Hello {name}, nice to meet you!")