st.text("This should not appear")
// ENABLED
config.set_option("client.displayEnabled", True)
a = st.text("This will be overwritten")
b = st.text("This will be overwritten too")
a.text("This should show up first")
// DISABLED
config.set_option("client.displayEnabled", False)
b.text("This overwrites b, but should not appear")
st.write("This should not appear")
st.line_chart([1, 2, 3, 4])