Daniel Cerda Escobar
Update app file
8ed86f2
raw
history blame
486 Bytes
import streamlit as st
st.set_page_config(
page_title="Piping & Instrumentation Diagram (P&ID) Object Detection ",
page_icon="πŸš€",
layout="wide",
initial_sidebar_state="expanded",
menu_items={
'Get Help': 'https://www.extremelycoolapp.com/help',
'Report a bug': "https://www.extremelycoolapp.com/bug",
'About': "# This is a header. This is an *extremely* cool app!"
}
)
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)