charilie / app.py
rehmet yeshanew
Add application file
e893d58
raw
history blame contribute delete
160 Bytes
import streamlit as st
st.title("Trying streamlit in hugging face")
st.header("Hugging Face")
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)