import streamlit as st def create_animation_app(): st.title("Bouncing Balls & Jellyfish in a Sphere") html_content = """
""" st.components.v1.html(html_content, height=600) if __name__ == "__main__": create_animation_app()