Arafath10's picture
Update app.py
46c1c0c verified
raw
history blame contribute delete
226 Bytes
import streamlit as st
# Simple Streamlit app
st.title("Simple Streamlit App")
st.write("Hello, Dockerized Streamlit World!")
# Input example
name = st.text_input("Enter your name:")
if name:
st.write(f"Hello, {name}!")