intelloid / app.py
taihan's picture
Add application file
6f0e8e2
raw
history blame contribute delete
124 Bytes
import streamlit as st
st.title("Hello, Streamlit!")
name = st.text_input("What's your name?")
st.write(f"Hello, {name}!")