SqlParser / app.py
LegendaryToe's picture
added streamlit
526afa6
raw
history blame
192 Bytes
import streamlit as st
# Title of the application
st.title('Hello, World!')
# A button that when clicked will show a message
if st.button('Say hello'):
st.write('Hello from Streamlit!')