import streamlit as st
import streamlit.components.v1 as components
# HTML content
html_content = """
2D Canvas Base 6 with Hidden State in Red
"""
# Streamlit app
def main():
st.set_page_config(page_title="Interactive 2D Graph", layout="wide")
st.title("2D Interactive Graph Base 6")
st.write("With Hidden State in Red")
# Embed the HTML content
components.html(html_content, height=600)
if __name__ == "__main__":
main()