Hi all I am building a simple web app with streamlit in python. I need to add 3 buttons but they must be on the same line.
Obviously the following code puts them on three different lines
st.button('Button 1')
st.button('Button 2')
st.button('Button 3')
Do you have any tips?
